.mytooltip {
    display: inline;
    position: relative;
    z-index: 999
}

/*
.mytooltip .tooltip-item {
    background: rgba(200, 100, 100, 0.1);
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    padding: 0 10px
}
*/

.mytooltip .tooltip-content {
    position: absolute;
    z-index: 9999;
    width: 0px;
    left: 50%;
    margin: 0 0 20px -180px;
    bottom: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
    box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
    background: #2b2bFF;
    opacity: 0;
    cursor: default;
    pointer-events: none
}


.mytooltip .tooltip-content::after {
    position: absolute;
    width: 0;
    height: 0;
    margin-top: -15px;
    border-top: 50px solid transparent;
    border-right: 100px solid rgba(0, 0, 0, 0.7);
    border-bottom: 50px solid transparent;

}


.mytooltip .tooltip-content img {
    position: absolute;
    margin-top: -25px;
    margin-left: 20px;
    height: 120px;
    background-color: white;
    box-shadow: 2px 2px 18px rgba(0, 0, 0, 0.5);
    display: inline-block;
    z-index: 99990;
    /*
    object-fit: cover; 
    object-position: 50% 0;
    border: solid;
    border-color: rgba(0, 0, 0,0.2);
    border-radius: 5%;
      */
}

/*
.mytooltip .tooltip-item::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 20px;
    bottom: 100%;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
*/
/*
.mytooltip:hover .tooltip-item::after {
    pointer-events: auto
}
*/

.mytooltip:hover .tooltip-content {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg)
}

/*
.mytooltip:hover .tooltip-content2 {
    opacity: 1;
    font-size: 18px
}
*/
/*
.mytooltip .tooltip-text {
    font-size: 14px;
    line-height: 24px;
    display: block;
    padding: 1.31em 1.21em 1.21em 0;
    color: #fff
}
*/

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

    .mytooltip{
        display: none;
    }
    .tooltip-content{
        display: none;
    }
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {

    .mytooltip{
        display: none;
    }
    .tooltip-content{
        display: none;
    }

}
