input[type="radio"] {
 display: none;
}

input[type="radio"] + label {
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 15px;
    cursor: pointer;
    padding: 10px 25px;
    position: relative;
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
    height: 70px;
    font-size: 14px;
    width:270px;
}

input[type="radio"]:checked + label {
 /*background-color: #bc7963;*/
 border-color: #bc7963;
}

.label_display_options2{
	height: 45px !important;
}

.container-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    column-gap: 10px;
}

/*.content-flex {
    width: 100%;
    min-height: 30px;
    height: auto;
    flex: auto;
}*/

/*@media screen and (max-width: 750px){
    .container-flex {
        flex-wrap: wrap;
    }
}*/

.display_prix{
    font-weight: bold;
	font-size:20px;
}

@media screen and (max-width: 400px){
    input[type="radio"] + label {
        width:82%;
    }
}

button.btn1{
    width:150px;
    height:35px;
    padding:5px;
    color:#FFFFFF;
    background:#d5baad;
    background:#c06d51;
    background: #bc7963;
    box-sizing:border-box;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius:3px;
    cursor: pointer;
    border: none;
    position: relative;
}

button.btn1::before, button.btn1::after{
  content:"";
  width: 0;
  height: 4px;
  position: absolute;
  transition: all 0.2s linear;
  background:#82726b;
  background: #bc7963;
  background:#f7ccb3;
}

button.btn1:hover::before, button.btn1:hover::after{
  width: 100%;
}

button.btn1:hover .btn::before, button.btn1:hover .btn::after{
  height: 100%;
}

#card-element {
    height: 20px; /* Ajustez cette valeur selon vos besoins */
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccd0d2;
}