.search-tab-nav {
    display: flex;
    margin-top: 100px;
    padding: 2px;
    border-radius: 8px;
    background: #ececec;
}

.search-tab-nav label {
    position: relative;
    margin: 0;
}

.search-tab-nav input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.search-tab-nav label span {
    min-width: 140px;
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: rgba(144, 144, 144, 1);
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s ease-out;
}

.search-tab-nav input:checked + span {
    color: rgba(47, 79, 112, 1);
    background: #fff;
}

.search-tab-nav label span:hover {
    color: rgba(47, 79, 112, 1);
}

.search-tab-content {
    width: 100%;
}


.about-right-card .about-right-card-content-wrapper {
    flex-direction: column;
}

.has_babybag__icon {
    margin-bottom: -7px;
}

.about-right-card:not(.babybag-yes) .has_babybag__icon rect {
    fill: rgba(144, 144, 144, 1);
}

.about-right-card-content-wrapper .yesbabybagbutton {
    margin-top: auto;
}

.section-certified {
    padding: 60px 0 40px;
    background: rgba(242, 251, 248, 1);
}

.section-certified .headline__title {
    margin-bottom: 17px;
}

.section-certified .headline__description {
    font-size: 16px;
    line-height: 140%;
    color: rgba(92, 92, 92, 1);
}

.certified-logotypes {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.certified-logotypes--item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; align-content: center; }
.certified-logotypes--item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.certified-logotypes--item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }

.certified-logotypes[data-items="2"] .certified-logotypes--item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.certified-logotypes[data-items="2"] .certified-logotypes--item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}


.certified-logotypes--item img {
    height: auto;
}

.howitworks .embed-container {
    position: relative;
    height: 20rem;
    border: 8px solid #f7f7f7;
    border-radius: 1rem;
    overflow: hidden;
    filter: drop-shadow(0px 0px 20.8px rgba(0, 0, 0, 0.05))
    drop-shadow(0px 0px 1.2px rgba(0, 0, 0, 0.1))
    drop-shadow(0px 1px 6.6px rgba(0, 0, 0, 0.05));
}

.howitworks .embed-container img {
    top: 0;
    left: 0;
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    z-index: 1;
}

.howitworks .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 992px) {
    .section-certified {
        padding: 100px 0;
    }
    .section-certified .container-large {
        flex-direction: row;
        justify-content: space-between;
        grid-column-gap: 30px;
    }

    .certified-col:nth-child(1) {
        max-width: 571px;
    }

    .certified-col:nth-child(2) {
        /*max-width: 480px;*/
        max-width: 600px;
        width: 100%;
    }

    .section-certified .headline__title {
        margin-bottom: 17px;
        font-size: 40px;
        line-height: 120%;
    }

    .section-certified .headline__description {
        max-width: 494px;
    }
}

@media (max-width: 991px) {
    .section-certified .container-large {
        grid-row-gap: 30px;
    }
}

@media (min-width: 641px) {
    .search-tab-nav label span {
        min-width: 180px;
    }
}

@media screen and (max-width: 479px) {
    .howitworks .embed-container {
        height: 15rem;
    }
}