#bmm-modal {
    display: none;
    position: fixed;
    top: 20%;
    left: 30%;
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
}

.bmm-hidden { opacity: 0; }

a.reco-link {
	color: #000 !important;
    border-bottom: 2px solid;
    border-color: black;
    padding-bottom: 5px;
}

a.reco-contact {
	color: #000 !important;
    border-bottom: 2px solid;
    border-color: black;
    padding-bottom: 5px;
}

.reco-name {
    font-weight: 500 !important;
    font-size: 32px !important;
	margin-bottom: 20px !important;
}

.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
	color: #000;
}
.popup-wrapper .overlay {
    background: rgba(0,0,0,.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.popup-wrapper .popup-content.antivol {
    z-index: 1;
    position: absolute;
    background: #fff;
    font-size: 16px;
    font-family: 'Funnel Display', sans-serif;
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    width: calc(100% - 32px);
}
.popup-wrapper .popup-content.antivol .left {
    padding: 24px;
    text-align: center;
    flex: 1;
}
.popup-content .what-vae .title {
    font-size: 24px;
    font-family: 'Funnel Display', sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}
.popup-content .what-vae select {
	color: #000;
    border: solid 1px #000;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}
.popup-content .what-vae .not-onlist {
    font-size: 14px;
    font-family: 'Funnel Display', sans-serif;
}
.popup-content .what-vae .not-onlist a {
    color: #000;
}
.popup-content .reco {
    margin-top: 48px;
}
.popup-content .reco span {
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}
.popup-content .product {}
.popup-content .reco-answer {
    background: #F7F7F7;
    padding: 16px 24px;
    border-radius: 4px;
    min-height: 130px;
}

.popup-content .reco-answer .button-line {
	background: transparent !important;
}

.popup-content .right {
    width: 400px;
    background: url(https://nokk.startit.agency/wp-content/uploads/2025/05/how-it-works-02.jpg) no-repeat center center;
    background-size: cover;
}
.popup-content .right img {
    width: 100%;
}
.popup-content .close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 20px;
    cursor: pointer;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
    .popup-wrapper .popup-content.antivol > div {
        flex: 0 0 100%;
        width: 100%;
    }
    .popup-wrapper .popup-content.antivol .right {
        height: 300px;
        order: -1;
    }
}

.loader-bmm-container {
	display: flex;
    justify-content: center;
    align-items: flex-start;
}

.loader-bmm {
	width: 25px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 3px solid;
	border-color: #000 #0000;
	animation: l1 1s infinite;
	position: relative;
	left: 10px;
    top: -4px;
	transition: opacity 0.5s ease;
}
@keyframes l1 {to{transform: rotate(.5turn)}}
