.poppin *
{
    transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.poppin
{
    position: fixed;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    top:0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    background: rgba(43, 46, 56, 0.9);
    opacity: 0;
    visibility: hidden;
}

.poppin table {
    width: 100%;
    max-width: 100%;
}

.poppin.show
{
    background: rgba(43, 46, 56, 0.7);
    opacity: 1;
    visibility: visible;
}
.poppin-title
{
    margin-bottom:20px;
    margin-top: 0px !important;
    font-size: 18px;
    background-color: #C5062C;
    padding: 10px;
    color: white;
    border-radius: 5px 5px 0 0;
}
.poppin-text
{
    text-align: left;
    color: #43424a;
    /*font-size: 12px;*/
    line-height: 20px;
    padding: 0 20px;
    /*max-height: 500px;*/
    overflow: visible;
}
.modal-wrapper
{
    box-sizing: border-box;
    width: 100%;
    max-width: 430px;
    margin-bottom: 10px;
    transform: scale(0.8);
    color: #2b2e38;
    background: #fff;
    display: flex;
    flex-direction: column;
    max-height: 90%;
    border-radius: 5px;
}
.modal-wrapper-inner
{
    overflow: auto;
}
.poppin.show .modal-wrapper
{
    transform: scale(1);
}
.close-poppin
{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 15px;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
    color: #ede9e9;
    border: 0;
    outline: 0;
    background: transparent;
}
.close-poppin:before
{
    font-family: EmbeddedArimo, sans-serif!important;
    font-size: 35px;
    line-height: 35px;
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
}
.close-poppin:hover
{
    color: #999;
}
/*champ_personnalisable*/
.poppin li {
    margin-left: 30px;
}

.poppin__scrollable-content {
    overflow-y: auto;
    max-height: 300px;
}

.button-wrapper {
    text-align: right;
    padding: 10px 20px 20px;
}