section.image {
  position: relative;
  width: 100%;
}

section.image img {
  width: 100%;
}

.t_tooltip_content {
  display: flex;
  align-items: center;
}

.t_tooltip_content_wrap_mobile {
  display: none;
}

.t_tooltip_img {
  width: auto;
  float: left;
  margin-right: 8px;
}

@media (min-width: 768px) {

  .t_hotSpot {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    background: white;
    transition: 0.5s;
  }

  .t_hotSpot::before {
    content: "";
    border: white 1px solid;
    border-radius: 100%;
    position: absolute;
    translate: -25% -25%;
    height: 46px;
    width: 46px;
      transition: 0.5s;
  }

  .t_hotSpot:hover::before {
    height: 78px;
    width: 78px;
      translate: -19% -19%;
  }

  .t_hotSpot::after {
    content: "\002B";
    position: absolute;
    left: 15%;
    top: 8%;
    font-size: 30px;
    color: black;
      transition: 0.5s;
      font-weight: light;
  }

  .t_hotSpot:hover::after {
    transform: rotate(45deg);
    left: 32%;
    top: 25%;
  }

  .t_hotSpot:hover {
    background: #FCC82F;
    width: 54px;
    height: 54px;
    margin-top: -27px;
    margin-left: -27px;
  }

  .t_hotSpot:hover .t_tooltip_content_wrap {
    opacity: 1;
    z-index: 10;
    visibility: visible;
  }

  .t_hotSpot:hover .t_tooltip_content_wrap {
    pointer-events: unset;
  }

  .t_hotSpot .t_tooltip_content_wrap {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    position: absolute;
    padding: 18px 18px 11px 15px;
    color: #000;
    box-shadow: 2px 2px 9px 0 rgba(93, 93, 93, 0.5);
    font-size: .8em;
    background: #fff;
    min-width: 238px;
    min-height: 20px;
    right: auto;
    bottom: auto;
    margin: auto auto auto auto;
    top: 50%;
    left: 100%;
    margin-left: 19px;
    transform: translateY(-50%);
    visibility: hidden;
  }

  .t_hotSpot.right_half .t_tooltip_content_wrap {
    left: -85%;
    transform: translate(-100%, -50%);
  }

  .t_hotSpot .t_tooltip_content_wrap .t_tooltip_name {
    padding-bottom: 11px;
  }

  .t_hotSpot .t_tooltip_content_wrap .t_tooltip_name a {
      font-size: 15px;
      line-height: 21px;
      color: black;
      text-transform: uppercase;
  }

  .t_hotSpot .t_tooltip_content_wrap .t_tooltip_price_field {
      font-size: 18px;
      line-height: 22px;
  }

  .t_hotSpot .t_tooltip_content_wrap .t_tooltip_sale_field {
      color: #8A8A8A;
      font-size: 14px;
      line-height: 17px;
      text-decoration: line-through;
  }

  .t_hotSpot .t_tooltip_content_wrap:after {
    content: '';
    border: 6px solid transparent;
    position: absolute;
  }

  .t_hotSpot .t_tooltip_content_wrap:after {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    border-color: transparent;
  }

  .t_hotSpot .t_tooltip_content_wrap:after {
    border-right-color: white;
    left: -12px;
    top: 42%;
  }

  .t_hotSpot.right_half .t_tooltip_content_wrap::after {
    border-left-color: white;
    right: -12px;
    left: unset;
    border-right-color: #00000000;
  }
}

@media (max-width: 768px) {

  .t_hotSpot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 100%;
    border: 1px solid black;
    box-shadow: 0 5px 8px -5px black;
  }

  .t_tooltip_content_wrap_mobile {
    display:block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: white;
    padding: 20px;
    width: 50%;
    height: 25%; */
    z-index: 30;
    width: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;

    visibility:hidden;
    opacity: 0;
    transition: all 0.3s;
  }

  .t_tooltip_content_wrap_mobile.hot-show {
    visibility:visible !important;
    opacity: 1 !important;
  }

  .t_hotSpot .t_tooltip_content_wrap {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    position: absolute;
    padding: 18px 18px 11px 15px;
    color: #000;
    box-shadow: 2px 2px 9px 0 rgba(93, 93, 93, 0.5);
    font-size: .8em;
    background: #fff;
    min-width: 238px;
    min-height: 20px;
    right: auto;
    bottom: auto;
    margin: auto auto auto auto;
    top: 35%;
    left: 100%;
    margin-left: 19px;
    transform: translateY(-50%);
    visibility: hidden;
  }

  .t_tooltip_content_wrap_mobile .t_tooltip_name {
    padding-bottom: 11px;
  }

  .t_tooltip_content_wrap_mobile .t_tooltip_name a {
      font-size: 15px;
      line-height: 21px;
      color: black;
      text-transform: uppercase;
  }

  .t_tooltip_content_wrap_mobile .t_tooltip_price_field {
      font-size: 18px;
      line-height: 22px;
  }

  .t_tooltip_content_wrap_mobile .t_tooltip_sale_field {
      color: #8A8A8A;
      font-size: 14px;
      line-height: 17px;
      text-decoration: line-through;
  }

  .t_tooltip_content_wrap_mobile .close-tooltip {
    text-align: right;
    margin-bottom: 0;
    font-size: 23px;
    color: black;
    float: right;
    height: 20px;
    width: 20px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    margin-left: -23px;
  }

  .t_hotSpot::after {
    content: "\002B";
    position: absolute;
    font-size: 21px;
    color: black;
    transition: 0.5s;
    font-weight: light;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hotspot_master {
    overflow: hidden;
  }

  .t_tooltip_content_wrap_mobile.hot-show {
    background: transparent !Important;
  }
  .t_tooltip_content_wrap_mobile .t_tooltip_content {
    background: white;
    padding: 20px;
  }
  .t_tooltip_content_wrap_mobile::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.7);
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
  }


}