.taggd {
    position: relative
}

.taggd__image {
    display: block;
    height: auto;
    width: 100%;
    margin: 0
}

.taggd__wrapper {
    /*display: none;*/
    height: 32px;
    /*1em;*/
    width: 28px;
    /*1em;*/
    position: absolute;
}

/*.taggd:hover .taggd__wrapper {
    display: block;
}*/

.taggd__button {
    display: block;
    height: 36px;
    width: 36px;
    padding: 0;
    border: 0;
    margin: 0;
    background-color: #fff;
    border: 4px solid white;
    background-repeat: none;
    text-align: left;
    font-weight: 700;
    /* box-shadow: 0 0 0 0 rgba(255, 255, 255, 1); */
    animation: pulse-white 1s infinite;
    border-radius: 500px;
    text-align: center;
}

@media (max-width: 980px) {
    .taggd__button {
        height: 27px;
        width: 27px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .taggd__button {
        height: 22px;
        width: 22px;
        font-size: 10px;
    }
}

.taggd__button.active {
    background-color: #111D49;
    border-color: #111D49;;
    color: #fff
}

.taggd__popup {
    position: absolute;
    left: 0
}

/*.taggd__button {
    display: block;
    height: 15px;
    width: 15px;
    margin-left: -.5rem;
    margin-top: -.5rem;
    border-radius: .5rem;
    background-color: #fff;

}*/

.taggd__button:hover {
    z-index: 10;
}

.taggd__popup {
    display: block;
    position: absolute;
    left: 50%;
    top: 125%;
    color: #fff;
    /* white-space: nowrap; */
    transform: translateX(-50%);
    z-index: 22;
    width: 250px;
}

.taggd__popup:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 8px 9px;
    border-color: transparent transparent #ffffff transparent;
    margin-left: -17px;
    top: -8px;
}

.taggd__popup a {
    display: block;
    padding: 13px;
    background-color: #fff;
    min-width: 220px;
    word-break: break-word;
}


.taggd__popup h3 {
    font-size: 15px;
    font-family: 'Lexend';
    font-weight: normal;
    margin-bottom: 8px;

    text-align: left;
}

.taggd__popup h3 a:hover {
    text-decoration: none;
}

.arrow-right-product {
    margin-left: auto;
}

.taggd__popup .price {
    font-size: 18px;
    font-family: 'Lexend';
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
    color: #000;
}

.taggd__popup .arrow {
    width: 28px;
    height: 10px;
    margin-left: auto;
    display: block;
}

.taggd__popup .arrow img {
    display: block;
}

.taggd__editor-input,
.taggd__editor-button {
    padding: .25rem .5rem;
    border: 1px solid #fff;
    margin-right: .25rem;
    background-color: transparent;
    color: #fff;
}

.taggd__editor-button--delete {
    margin-right: 0;
}

.info_to_send {
    display: none;
}


@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(65, 65, 65, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}