.slide {
    position: relative;
}

.slide img {
    width: 100%;
}

.item {
    position: absolute;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    width: 183px;
    font-size: 10px;
    text-align: center;
}

.item-top-left {
    border-top-left-radius: 0
}

.item-top-right {
    border-top-right-radius: 0
}

.item-bottom-right {
    border-bottom-right-radius: 0
}

.item-bottom-left {
    border-bottom-left-radius: 0
}

.item .title,
.item .description {
    display: block;
    margin: 7px 0;
    font-weight: 300;
}

.item .title {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
    line-height: 12px;
}

.item .title .text {
    max-width: 128px;
}

.item a {
    display: inline-block;
    width: auto;
    text-decoration: none;
    color: #192B55;
    border-radius: 23px;
    border: 1px solid #192B55;
    padding: 7px 10px;
    margin-bottom: 10px
}

.item .full {
    display: none
}

.item .title:not(.open) .plus {
    font-size: 18px;
    line-height: 10px;
    margin-left: 10px;
    animation: pulse-circle 1.5s infinite;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 15px;
    box-shadow: 0 0 0 0 rgba(0, 173, 238, 1);
}

@keyframes pulse-circle {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 173, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 173, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 173, 238, 0);
    }
}

.item .open .plus {
    transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
    .item {
        width: 45px;
    }

    .item.open {
        width: 95px;
        padding: 5px;
    }

    .item .title:not(.open) .plus {
        margin-left: 0;
    }

    .item .title .text,
    .item .full .description {
        display: none;
    }

    .item .title.open .text {
        display: inline-block;
    }

    .item .title.open .plus {
        width: 20px;
    }

    .item .plus {
        margin-left: 0;
    }

    .item a {
        padding: 3px 8px;
        margin-bottom: 5px;
    }
}
