@font-face {
	font-family: 'Pricedown';
	src: url('fonts/pricedown bl.eot');
	src: local('☺'), url('fonts/pricedown bl.woff') format('woff'), url('fonts/pricedown bl.ttf') format('truetype'), url('fonts/pricedown bl.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

html {
    background-color: #161718;
}

body {
    font-family: 'Poppins';
    background-color: #161718;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

h1 {
    text-align: center;
    font-family: 'Pricedown';
    text-transform: uppercase;
    font-size: 36px;
    margin-top: 0;
}

.row-flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: stretch;
    width: 100%;
}

.form {
    width: 100%;
}

.result {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}

form .row {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 15px;
    align-items: center;
}

.container, form .row.radio {
    display: flex;
    flex-direction: column;
}

form .row.radio {
    /* min-height: 550px; */
}

.container {
    margin-bottom: 15px;
    width: 100%;
    background-color: #1e2021;
    border-radius: 10px;
    overflow: hidden;
}

.prix-client, .prix-client-vip {
    display: flex;
    flex-direction: column;
    align-content: stretch;
}

span.text {
    padding: 4px 20px;
    display: inline-block;
    background-color: #937fa7;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

span.price, span.price-vip {
    padding: 12px 20px;
    display: inline-block;
    background-color: #ecf0f1;
    color: #252525;
    border-radius: 0 0 15px 15px;
    text-align: center;
    font-family: 'Pricedown';
    font-size: 30px;
}

label {
    display: inline-block;
    padding: 5px 0;
}

h2 {
    margin: 0;
    padding: 8px 40px 8px 10px;
    background-color: #202223;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

h2:hover, h2.collapse-open {
    background-color: #937fa7;
}

h2:after {
    content: '\f067';
    display: block;
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

h2.collapse-open:after {
    content: '\f068';
}

h2.collapse-open:hover {
    background-color: #735f87;
}

.container > div > div {
    background-color: #1e2021;
    padding: 6px 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.prix-client, .prix-client-vip {
    width: 100%;
    margin-bottom: 10px;
}

.collapse[data-collapse="collapsed"] {
    height: 0px;
    overflow: hidden;
}

input[type="text"] {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 500px;
    border: none;
}

input[type="text"]:focus, input[type="text"]:focus-visible {
    outline: none;
}

.calculateur {
    max-width: 450px;
    margin: auto;
    padding: 20px 0;
}

.btn-refresh a {
    padding: 10px 20px;
    width: 100%;
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    background-color: #937fa7;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins';
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

.btn-refresh a:hover {
    background-color: #735f87;
}

.btn-refresh {
    width: 100%;
}

.input button {
    width: 37px;
    height: 37px;
    text-align: center;
    border: none;
    background-color: #937fa7;
    color: #fff;
    font-size: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.input button:hover {
    background-color: #735f87;
}

.input {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

@media all and (max-width: 768px) {
    .calculateur {
        max-width: 100%;
        padding: 12px 10px 0;
    }
    
    body {
        height: auto;
    }
    
    h1 {
        margin-top: 0;
        font-size: 32px;
    }
    
    h2 {
        font-size: 20px;
    }

    label {
        font-size: 18px;
    }

    input[type="text"] {
        font-size: 18px;
    }
    
    .container > div > div {
        padding: 8px 10px;
    }
}