:root {
    --disabled-color: rgb(152 153 160);
    --disabled-background: rgb(231 231 234);
}

body {
    background-color: rgb(26, 115, 232);
    color: white;
    font-family: Montserrat, sans-serif;
}
.container {
    max-width: 1200px;
    margin: auto;
}
.simulateur {
}
.segment {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.segment ul li::after {
    width: 100%;
    position: absolute;
    padding: 1em 0;
    top: 86px;
    text-align: center;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    left: 0;
    background: #0049b2;
    color: #ffffff;
    border-radius: 2em;
    font-size: 0.8em;
    z-index: 1;
    box-shadow: 0 0 20px #ffffff3d;
    border: 1px solid #68a6ff;
}
.segment ul li.active::after {
    display: block;
}
.segment ul {
    position: relative;
}

.segment ul li:nth-of-type(1)::after {
    content: "Les publicités FB permettent promouvoir le contenus de votre page Facebook auprès d'utilisateurs ciblés.";
}
.segment ul li:nth-of-type(2)::after {
    content: "Les publicités Instagram permettent de promouvoir le contenu de votre compte Instagram auprès d'utilisateurs ciblés.";
}
.segment ul li:nth-of-type(3)::after {
    content: "Permet de faire la publicité de votre contenu vidéo sur YouTube ou dans les résultats de recherche de Youtube.";
}
.segment ul li:nth-of-type(4)::after {
    content: "Les campagnes de Search vous permettent de placer des annonces sur le moteur de recherche de Google.";
}
.segment ul li:nth-of-type(5)::after {
    content: "Il s'agit d'annonces sous forme de bannières publicitaires diffusées sur les sites Web que les utilisateurs consultent le plus.";
}

.segment h3 {
    font-size: 3rem;
    text-align: center;
    padding: 0px 0px 0px 1em;
}
.segment ul {
    display: flex;
    list-style-type: none;
    gap: 1em;
    margin: 0px auto 2em;
    width: 100%;
    justify-content: space-around;
}
.segment ul li {
    width: 50px;
    height: 50px;
    background: rgb(242, 242, 242);
    transition: all 0.2s ease 0s;
    border-radius: 50%;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.segment ul li svg {
    width: 30px;
    height: 30px;
}
svg#instagram {
    width: 50px;
    height: 50px;
}
.segment ul li:hover,
.segment ul li.active {
    background: rgb(0, 73, 178);
    cursor: pointer;
    transition: background 0.2s ease 0s;
}
.segment ul li:hover svg path,
.segment ul li:hover svg rect,
.segment ul li.active svg path,
.segment ul li.active svg rect {
    fill: rgb(245, 247, 251) !important;
}
.simtabs {
    background: rgb(245, 247, 251);
    color: rgb(84, 84, 84);
    border-radius: 3rem;
    display: flex;
    position: relative;
    transition: all .2s ease;
}
.simtabs .submit-loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 3rem;
}
.objectifs {
    width: 25%;
    border-right: 3px solid rgb(237, 238, 241);
    background: white;
    border-radius: 3rem 0px 0px 3rem;
    transition: all .2s ease;
}
.objectifs h3 {
    border-radius: 3rem 0px 0px;
    color: rgb(26, 115, 232);
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
    background: rgb(245, 247, 251);
    margin: 0px;
    padding: 1em;
}
.objectifs ul {
    background-color: white;
    border-radius: 0px 0px 0px 3rem;
    margin: 0px;
    padding: 0px 0px 3rem;
    list-style-type: none;
}
.objectifs ul li {
    display: flex;
    align-items: center;
    padding: 1.5em 1em;
    font-size: 0.9rem;
}
.objectifs ul li svg {
    width: 36px;
    height: 36px;
    margin: 0px 1em;
}
.simcontent {
    border-left: 3px solid rgb(241, 242, 245);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 75%;
    padding: 2em 2em 96px 2em;
    /* am */
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    min-height: 100%;
    transition: all .2s ease;
}
/* am */
.screen-items {
    display: block;
    position: relative;
    /* flex-direction: row;
    flex-wrap: nowrap; */
    /* padding: 2em; */
    /* overflow: hidden; */
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    transition: all 0.2s;
    overflow: hidden;
    transition: all .2s ease;
}
/* .simcontent .screen-items .continner {

    transform: translateX(0%);
} */

@keyframes anim-active {
    0% {
        transform: translateX(120%);
        opacity: .5;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes anim-back {
    0% {
        transform: translateX(-120%);
        opacity: .5;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes anim-out {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(-120%);
        opacity: .5;
    }
}
@keyframes anim-out-back {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: .5;
    }
}

.simcontent .screen-items .continner.active {
    position: relative;
    animation: anim-active .3s cubic-bezier(0.37, 0, 0.63, 1);
    animation-fill-mode: forwards;
}

.simcontent .screen-items .continner.back {
    position: relative;
    animation: anim-back .3s cubic-bezier(0.37, 0, 0.63, 1);
    animation-fill-mode: forwards;
}

.simcontent .screen-items .continner.out {
    animation: anim-out .3s cubic-bezier(0.37, 0, 0.63, 1);
    animation-fill-mode: forwards;
}

.simcontent .screen-items .continner.out-back {
    animation: anim-out-back .3s cubic-bezier(0.37, 0, 0.63, 1);
    animation-fill-mode: forwards;
}
/* .simcontent .screen-items .continner.selected {
    position: absolute;
    animation: anim-out-back .3s cubic-bezier(0.37, 0, 0.63, 1);
    animation-fill-mode: forwards;
} */

.simcontent .screen-items .continner {
    background: rgb(255, 255, 255);
    padding: 2em;
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 0px 20px;
    /* transition: all .3s ease-in; */
    /* am */
    /* position: relative; */
    position: absolute;
    opacity: .5;
    /* top: 0;
    bottom: 0; */
    min-width: calc(100%);
    min-height: 100%;
    box-sizing: border-box;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform-origin: center;
    transform: translateX(120%);
}
.simcontent .continner p {
    font-weight: 600;
    font-size: 1em;
    /* max-width: 550px; */
    margin: 0 2em 1em 2em;
}
.info {
    text-align: center;
    margin-bottom: 2rem;
}
.objectifs ul li.active,
.objectifs ul li:hover {
    background: rgb(249, 250, 254);
    cursor: pointer;
    transition: background 0.2s ease 0s;
    border-right: 5px solid rgb(90, 134, 228);
    color: rgb(90, 134, 228);
}
.objectifs ul li.active svg path,
.objectifs ul li:hover svg path {
    fill: rgb(90, 134, 228) !important;
}
.objectifs ul li.disabled {
    color: var(--disabled-color);
    background: var(--disabled-background);
}
.objectifs ul li.disabled svg path {
    fill: var(--disabled-color) !important;
}
.segment ul li::before {
    transition: all 0.2s ease 0s;
    content: "";
    width: 54px;
    height: 54px;
    display: block;
    position: absolute;
    padding: 1em;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(
        -52deg,
        rgb(215, 214, 214) 0%,
        rgb(255, 255, 255) 100%
    );
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 10px;
}
.segment ul li:hover::before,
.segment ul li.active::before {
    background: linear-gradient(
        -52deg,
        rgb(1, 69, 166) 0%,
        rgb(1, 83, 207) 100%
    );
}
.navpoints {
    list-style-type: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0px;
}
.navpoints li {
    width: 10px;
    height: 10px;
    background: rgb(229, 229, 229);
    border-radius: 50%;
    cursor: pointer;
}
.navpoints li.active {
    background: rgb(26, 115, 232);
}
.navpoints {
    list-style-type: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0px;
}
.navpoints li {
    width: 10px;
    height: 10px;
    background: rgb(229, 229, 229);
    border-radius: 50%;
    cursor: pointer;
}
.navpoints li.active {
    background: rgb(26, 115, 232);
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    flex-grow: 1;
}
.field label {
    margin: 1em 1em 0.7em;
    color: rgb(134, 134, 134);
    font-size: 0.95rem;
}
.field input,
.field select {
    background: rgb(245, 247, 251);
    padding: 1em 2em;
    font-size: 1rem;
    color: rgb(26, 115, 232);
    border-radius: 3em;
    border: 1px solid transparent;
}
.field select {
    text-transform: capitalize;
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: rgb(26, 115, 232);
}
.form {
    width: 100%;
}

.form.simform {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.field.next {
    width: 100%;
    display: flex;
    align-items: flex-end;
}
button.btn {
    background: rgb(26, 115, 232);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1em 3em;
    box-shadow: rgba(26, 115, 232, 0.37) 2px 2px 10px;
    cursor: pointer;
}
button.btn:disabled {
    background: var(--disabled-background) !important;
    color: var(--disabled-color) !important;
    box-shadow: none;
}
.typevisuel {
    display: flex;
    gap: 2em;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
    width: 100%;
}
.typevisuel li {
    flex-basis: 21%;
    text-align: center;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 15px;
    border-radius: 1em;
    padding: 1em 0px;
    transition: all 0.2s ease 0s;
    cursor: pointer;
}
.typevisuel li svg {
    width: 40px;
    margin-bottom: 0.5em;
    height: 40px;
}
.typevisuel li h4 {
    font-size: 0.9em;
    margin: 0px;
    color: rgb(134, 134, 134);
}
.typevisuel li p {
    color: rgb(168, 168, 168);
    font-size: 0.7em;
    margin: 0px !important;
}
.typevisuel li:hover,
.typevisuel li.active {
    background: rgb(26, 115, 232);
}
.typevisuel li:hover path,
.typevisuel li:hover polygon,
.typevisuel li:hover rect,
.typevisuel li.active path,
.typevisuel li.active polygon,
.typevisuel li.active rect {
    fill: rgb(255, 255, 255) !important;
}
.typevisuel li:hover h4,
.typevisuel li:hover p,
.typevisuel li.active h4,
.typevisuel li.active p {
    color: rgb(255, 255, 255) !important;
}
/* am */
.typevisuel li.disabled:hover,
.typevisuel li.disabled {
    background: var(--disabled-background);
}
.typevisuel li.disabled:hover path,
.typevisuel li.disabled:hover polygon,
.typevisuel li.disabled:hover rect,
.typevisuel li.disabled:hover circle,
.typevisuel li.disabled path,
.typevisuel li.disabled polygon,
.typevisuel li.disabled rect,
.typevisuel li.disabled circle {
    stroke: var(--disabled-color) !important;
    fill: transparent !important;
}
.typevisuel li.disabled:hover h4,
.typevisuel li.disabled:hover p,
.typevisuel li.disabled h4,
.typevisuel li.disabled p {
    color: var(--disabled-color) !important;
}

.devisresults {
    list-style-type: none;
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.illust {
    width: 200px;
    height: 200px;
    background: rgb(252, 252, 252);
    border: 1px solid rgb(242, 242, 242);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3em auto 1em;
}
.illust svg {
    width: 100px;
    height: 100px;
}
li:last-child .illust svg {
    width: 75px;
    height: 75px;
}
.devisresults li {
    text-align: center;
    transition: all 0.2s ease 0s;
    flex-grow: 1;
}
.devisresults li.active .illust,
.devisresults li:hover .illust {
    border-color: rgb(26, 115, 232) !important;
}
.devisresults li.active path,
.devisresults li:hover path {
    fill: rgb(26, 115, 232) !important;
}
.devisresults li:last-child {
    border-left: 1px solid rgb(217, 218, 221);
}
.budget li {
    flex-basis: 30%;
}
.budget li h4 {
    font-size: 2rem;
    color: rgb(26, 115, 232);
    font-weight: 600;
}
.budget li h4 span {
    font-size: 1.5rem;
    color: rgb(84, 84, 84);
    font-weight: 100;
}
.budget li:hover h4 span,
.typevisuel li.active h4 span {
    color: rgb(255, 255, 255) !important;
}
.budgetfield {
    flex-direction: row;
    gap: 1em;
    justify-content: space-evenly;
    margin-top: 3em;
}
.budgetfield input {
    flex-grow: 2;
}
.merci img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 2em auto;
}
.merci {
    text-align: center;
}

[v-cloak] {
    display: none;
}

/*********************************
  Mobile
  ****************************************/
@media only screen and (max-width: 970px) {
    .segment ul li::after {
        width: auto;
        padding: 0.4em 1em;
        top: 66px;
        border-radius: 3em;
    }

    .segment,
    .simtabs {
        flex-direction: column;
    }

    .segment ul,
    .segment h3 {
        padding: 0;
    }

    .segment ul li {
        width: 30px;
        height: 30px;
    }
    .segment ul li::before {
        width: 33px;
        height: 33px;
    }
    .segment ul li svg {
        width: 20px;
        height: 20px;
    }
    .objectifs ul {
        padding: 0;
    }

    .objectifs {
        width: 100%;
        border-radius: 3rem 3rem 0 0;
        border: none;
    }
    .objectifs h3 {
        border-radius: 3rem 3rem 0 0;
    }

    .objectifs ul li.active,
    .objectifs ul li:hover {
        border-right: none;
        border-bottom: 2px solid #dee4f9;
    }

    .simcontent {
        width: auto;
        border-left: none;
    }

    .simcontent .continner {
    }

    .illust {
        width: 5rem;
        height: 5rem;
    }

    .illust svg {
        width: 3rem;
        height: 3rem;
    }
    li:last-child .illust svg {
        width: 3rem;
        height: 3rem;
    }
    .devisresults {
        padding: 0;
    }

    .typevisuel li {
        flex-basis: 43%;
    }
    .budgetfield {
        flex-direction: column;
        text-align: center;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.nav-btns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    transition: all .2s ease;
}

/* Loader */

.sim-loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem 0;
    height: 220px;
    width: 100%;
}

.pulse-loader:not(:required) {
    display: inline-block;
    width: 50px;
    height: 50px;
    -moz-animation: pulse-loader 0.7s linear infinite alternate;
    -webkit-animation: pulse-loader 0.7s linear infinite alternate;
    animation: pulse-loader 0.7s linear infinite alternate;
    border: 2px solid #f33155;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    text-indent: 50px;
}

@-moz-keyframes pulse-loader {
    0% {
        -moz-box-shadow: #f33155 0 0 0px 20px;
        box-shadow: #f33155 0 0 0px 20px;
    }
    40% {
        -moz-box-shadow: none;
        box-shadow: none;
    }
    100% {
        -moz-box-shadow: #f33155 0 0 0px 25px inset;
        box-shadow: #f33155 0 0 0px 25px inset;
    }
}
@-webkit-keyframes pulse-loader {
    0% {
        -webkit-box-shadow: #f33155 0 0 0px 20px;
        box-shadow: #f33155 0 0 0px 20px;
    }
    40% {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    100% {
        -webkit-box-shadow: #f33155 0 0 0px 25px inset;
        box-shadow: #f33155 0 0 0px 25px inset;
    }
}
@keyframes pulse-loader {
    0% {
        -moz-box-shadow: #f33155 0 0 0px 20px;
        -webkit-box-shadow: #f33155 0 0 0px 20px;
        box-shadow: #f33155 0 0 0px 20px;
    }
    40% {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    100% {
        -moz-box-shadow: #f33155 0 0 0px 25px inset;
        -webkit-box-shadow: #f33155 0 0 0px 25px inset;
        box-shadow: #f33155 0 0 0px 25px inset;
    }
}
