.congrat {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0;
    font-size: 14px;
}
.congrat__img {
    max-width: 175px;
    min-width: 40%;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
	z-index: 1;
}
.congrat__img img {
    width: 100%;
}
.congrat__description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 5px;
}
.congrat__title {
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.15;
    font-size: 14px;
}
.congrat__annonce {
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1.15;
}
.congrat__more {
    position: absolute;
    left: 40%;
    right: 0;
    bottom: -10px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 4px 4px #ffffff;
}
@media (max-width:1279px) {
	.congrat__annonce {
		display: none;
	}
}
@media (max-width:425px) {
	.congrat {
		flex-direction: column;
	}
	.congrat__more {
		position: relative;
	}
}

@media (prefers-color-scheme: dark) {
	.congrat__more {
		background-color: #212121;
		box-shadow: 0 0 4px 4px #212121;
	}
}