/* COMMUN */
* {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    box-sizing: border-box;
}

body.overflow-hidden {
    overflow-y: hidden;
    position: relative;
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 900;
    font-size: 35px;
}

.container {
    width: 1300px;
    margin: 0 auto;
}

.container-header {
    width: 1400px;
    margin: 0 auto;
}

.container .container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.container .container-flex > div {
    width: 40%;
}

.back-button {
    display: inline-block;
    margin: 30px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

.back-button i {
    margin-right: 5px;
}

p {
    font-weight: 400;
    font-size: 24px;
}

.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.align-center {
    text-align: center;
}
.flex-center {
    display: flex;
    justify-content: center;
}
.button {
    border-radius: 5px;
    background-color: #e86659;
    padding: 5px 0 !important;
    font-size: 20px;
    color: #fff;
    display: block;
    text-decoration: none;
    width: 400px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.button:hover {
    background-color: #d65f55;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}
header .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header .mobile-button {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
header .mobile-button i {
    font-size: 25px;
}
header .close-button {
    display: none;
    position: absolute;
    right: 24px;
    top: 4px;
}
header .close-button i {
    font-size: 30px;
}
header img {
    width: 200px;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 450px;
    background: transparent;
    box-shadow: none;
    position: relative;
    height: 80px;
}
header nav > span, header nav > a {
    text-decoration: none;
    color: #444;
    font-weight: normal;
    cursor: pointer;
    align-items: center;
    display: block;
    font-size: 18px;
}
header nav > span:hover, header nav > a:hover {
    font-weight: bold;
}
header nav .dropdown-container {
    display: none;
    position: absolute;
    left: 0;
    top: 40px;
    border-top: 51px solid transparent;
}
header nav ul {
    width: 100%;
    background: #fff;
    box-shadow: 0px 2px 5px #ccc;
    border-top: none;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
header nav ul li {
    display: inline-block;
    width: 45%;
    border-bottom: 1px solid #ccc;
}
header nav ul li a {
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    font-weight: normal;
    padding: 5px 0 10px 0;
    display: block;
    font-size: 15px;
}
header nav ul > li:nth-last-of-type(-n+2) {
    border: none;
}
header nav ul li a:hover {
    font-weight: 600;

}
header nav > span:hover .dropdown-container {
    display: block;
}

/* INDEX */
#nos-apis {
    margin-top: 80px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 80px;
}
#jeton {
    border-bottom: 1px solid #ccc;
    padding-bottom: 80px;
}
#jeton #token-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 15% 0 15%;
}
#jeton #token-steps > div{
    text-align: center;
}
#jeton #token-steps .step {
    background-color: #e7aa6d;
    color: #fff;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}
#jeton #token-steps .step-txt {
    font-weight: bold;
    font-size: 18px;
}
#nos-apis h1:after {
    content: "";
    width: 300px;
    height: 3px;
    background: #444;
    margin-top: 20px;
    display: block;
}
#nos-apis .button {
    margin-top: 40px;
}
#nos-tuiles {
    margin-top: 80px;
}
#nos-tuiles h2:after {
    content: "";
    width: 300px;
    height: 3px;
    background: #444;
    margin-top: 20px;
    display: block;
}
#nos-tuiles p:first-child {
    margin-top: 10px;
}
#nos-tuiles .button {
    margin-top: 60px;
}
#qsm {
    padding: 80px 0 40px 0;
}
#qsm .button {
    margin-top: 60px;
}
#qsm h2:after {
    content: "";
    width: 300px;
    height: 3px;
    background: #444;
    margin-top: 20px;
    margin-bottom: 60px;
    display: block;
}
#jeton {
    padding: 80px 0 40px 0;
}
#jeton .button {
    margin-top: 60px;
}
#jeton h2 {
    text-transform: uppercase;
}
#jeton h2:after {
    content: "";
    width: 300px;
    height: 3px;
    background: #444;
    margin-top: 20px;
    margin-bottom: 60px;
    display: block;
}

/* CONTACT */
.contact-form {
    margin-top: 80px;
    padding: 60px 0;
    position: relative;
    background-color: #0095a3;
    background-image: url(../img/bg_lines.svg);
    background-size: cover;
    background-position: top center;
}
.contact-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}
.contact-form .h2-subtitle {
    color: #fff;
    display: block;
    text-align: center;
    font-size: 32px;
}
.contact-form .form-container {
    margin-top: 60px;
}
.contact-form .form-container > form{
    width: 45%;
}
.contact-form .form-container > div{
    width: 80%;
    margin: 0 auto;
}
.contact-form .top-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@-webkit-keyframes argh-my-eyes {
    0%   { background-color: #fff; }
    50% { background-color: #e86659; }
    100% { background-color: #fff; }
}
@-moz-keyframes argh-my-eyes {
    0%   { background-color: #fff; }
    50% { background-color: #e86659; }
    100% { background-color: #fff; }
}
@keyframes argh-my-eyes {
    0%   { background-color: #fff; }
    50% { background-color: #e86659; }
    100% { background-color: #fff; }
}
.contact-form .invalidate {
    -webkit-animation: argh-my-eyes 2s infinite;
    -moz-animation:    argh-my-eyes 2s infinite;
    animation:         argh-my-eyes 2s infinite;
}
.contact-form input {
    border: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 12px 15px;
    color: #444444;
    background: #f8f8f8;
    height: inherit;
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
}
.contact-form textarea {
    border: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 12px 15px;
    color: #444444;
    background: #f8f8f8;
    height: 150px;
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
}
.contact-form button {
    border: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 15px 15px;
    color: #fff;
    font-weight: bold;
    background-color: #e86659;
    height: inherit;
    font-size: 22px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
    margin-top: 15px;
    cursor: pointer;
}
.contact-form .top-form input {
    width: 49%;
}
.contact-form .top-legal-sentence {
    font-size: 16px;
    color: #444;
}
.contact-form .checkbox-newsletter {
   display: flex; 
   align-items: center;
   padding: 10px 0;
}
.contact-form .checkbox-newsletter label {
    font-size: 16px;
    color: #444;
}
.contact-form .checkbox-newsletter input {
    width: inherit;
    margin-right: 10px;
    position: relative;
    top: 5px;
}
.contact-form .bottom-legal-sentence {
    font-size: 11px;
    color: #90CAD0;
    text-align: center;
}
.contact-form .contact {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form .contact .contact-container {
    text-align: center;
    width: 80%;
}
.contact-form .contact .contact-container .tel-link {
    font-size: 45px;
    color: #fff;
    text-decoration: none;
}
.contact-form .contact .contact-container .tel-link:after {
    content: "";
    width: 40%;
    height: 1px;
    background: #fff;
    margin: 40px auto;
    display: block;
}
.contact-form .contact .contact-container .webinaire {
    font-size: 40px;
    color: #fff;
}
.contact-form .contact .contact-container .webinaire-link {
    border: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 15px 15px;
    color: #fff;
    font-weight: bold;
    background-color: #e86659;
    height: inherit;
    font-size: 22px;
    margin: 40px auto 0 auto;
    width: 60%;
    display: block;
    text-decoration: none;
}

/* FOOTER */
footer {
    padding: 25px 0;
    background-color: #efefef;
}
footer .footer-copyright {
    color: #444;
}

/* SWAGGER */
.api-banner {
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 1px solid #ccc;
}
.swagger-ui .topbar .download-url-wrapper {
    display: none;
}
.renderedMarkdown ul:not(.browser-default) {
    padding-left: 30px;
}
.select-label span{
	color: #444;
}
.topbar-wrapper .link img {
	height: 75px;
	margin-top: 15px;
}
.swagger-ui .topbar {
    padding: 10px 0;
    background-color: #ffffff;
}
.swagger-ui .opblock {
	border-radius: 0px;
	box-shadow: 0 0 0px rgb(0 0 0 / 19%);
}
.swagger-ui select {
    border: 1px solid #41444e;
    border-radius: 0px;
	box-shadow: 0 0px 0px 0 rgb(0 0 0 / 25%);
}
.swagger-ui .opblock .opblock-summary-method {
    border-radius: 0px;
}
.swagger-ui .btn {
    border: 1px solid grey;
    border-radius: 0px;
}
.swagger-ui .topbar .download-url-wrapper .select-label select {
    border: 1px solid #444;
}
.swagger-ui .topbar .download-url-wrapper .select-label {
    max-width: 820px !important;
}
.swagger-ui .model-box {
    display: block !important;
}
.swagger-ui .model-title {
    font-size: 12px !important;
}
.topbar-wrapper .link img {
    display: none;
}
.scheme-container {
    display: none;
}
.swagger-ui .info li, .swagger-ui .info p, .swagger-ui .info table {
    list-style-type: disc;
}
.swagger-ui .info hgroup.main a {
    display: none;
}
.parameters-col_description select {
	display: block !important;
}
.button.more-apis {
    text-align: center;
    margin: 40px auto;
}

/* RESPONSIVE */

@media screen and (max-width: 1400px) {
    .container-header {
        width: 100%;
        padding: 0 20px;
    }
}
@media screen and (max-width: 1300px) {
    .container {
        width: 100%;
        padding: 0 30px;
    }
    .container img {
        width: 100%;
        max-width: 550px;
    }
}
@media screen and (max-width: 1100px) {
    .container .container-flex {
        display: block;
    }
    .container .container-flex > div {
        display: block;
        width: 100%;
        text-align: center;
    }
    .contact-form .contact .contact-container {
        width: 100%;
        margin-top: 40px;
    }
    .contact-form .checkbox-newsletter {
        justify-content: center;
    }
    #nos-apis h1 {
        margin-bottom: 40px;
    }
    #nos-apis img {
        margin-top: 80px;
    }
    #nos-tuiles h2 {
        margin-bottom: 40px;
    }
    #nos-tuiles img {
        margin-bottom: 40px;
    }
    .contact-form button {
        width: 500px !important;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px !important;
        padding: 15px 15px !important;
    }
    .button, .webinaire-link {
        width: 500px !important;
        margin-left: auto;
        margin-right: auto;
        margin-top: 80px !important;
        padding: 15px 15px !important;
    }
}
@media screen and (max-width: 768px) {
    p {
        font-size: 18px;
    }
    h2 {
        font-size: 25px;
    }
    .container .container-flex {
        padding-top: 0;
    }
    .contact-form button, .button, .webinaire-link {
        width: 80% !important;
        font-size: 15px;
        margin-top: 50px !important;
    }
    .contact-form .top-form {
        display: block;
    }
    .contact-form .top-form input {
        width: 100%;
    }
    header nav {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background: #fff;
        padding: 40px;
        overflow: scroll;
        z-index: 800;
        display: none;
    }
    header nav ul li {
        width: 100%;
    }
    header nav ul > li:nth-last-of-type(-n+2) {
        border-bottom: 1px solid #ccc;
    }
    header nav ul > li:last-child {
        border: none;
    }
    header nav ul li a {
        font-size: 17px;
    }
    header nav a {
        font-weight: bold;
    }
    header nav span {
        font-weight: bold;
        margin-top: 20px;
    }
    header nav .dropdown-container {
        display: block;
        position: inherit;
        border: none;
    }
    header nav .dropdown-container ul {
        box-shadow: none;
        padding: 20px 0 0 0;
    }
    header img {
        width: 150px;
    }
    header .mobile-button {
        display: block;
    }
    header .close-button {
        display: block;
    }
    .back-button {
        margin-left: 0;
    }
    #nos-apis h1:after {
        width: 100%;
    }
    #nos-tuiles h2:after {
        width: 100%;
    }
    #qsm h2:after {
        width: 100%;
    }
    #jeton #token-steps {
        display: block;
        margin-bottom: 60px;
        padding-top: 30px;
    }
    #jeton #token-steps > div{
        margin-top: 30px;
    }
    #jeton h2:after {
        width: 100%;
    }
    .contact-form .contact .contact-container .tel-link {
        font-size: 35px;
    }
    .contact-form .contact .contact-container .webinaire {
        font-size: 35px;
    }
}