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: 18px;
		height: 18px;
		/* margin-top: -12px; */
		/* margin-left: -12px; */
		background: var(--accent1);
		transition: 0.5s;
		transform: translate(-50%, -50%);
	}

	.t_hotSpot::before {
		content: "";
		border: white 2px solid;
		border-radius: 100%;
		position: absolute;
		/* translate: -25% -25%; */
		height: 30px;
		width: 30px;
		transition: all 0.2s;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.t_hotSpot:hover::before {
		/* height: 78px; */
		/* width: 78px; */
		/* translate: -19% -19%; */
		border: 9px solid rgba(255, 255, 255, 0.5);
		width: 46px;
		height: 46px;
	}

	.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: 0.8em;
		background: #fff;
		min-width: 238px;
		min-height: 20px;
		right: auto;
		bottom: auto;
		margin: auto auto auto auto;
		top: 50%;
		left: 100%;
		margin-left: 10px;
		transform: translate(7%, -50%);
		visibility: hidden;
	}

	.t_hotSpot.right_half .t_tooltip_content_wrap {
		margin-left: 28px;
	}

	.t_hotSpot.right_half .t_tooltip_content_wrap {
		left: -85%;
		transform: translate(-119%, -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;
		border: 3px solid transparent;
		border-radius: 50%;
		cursor: pointer;
		box-sizing: border-box;
		width: 12px;
		height: 12px;
		margin-top: -6px;
		margin-left: -6px;

		background: var(--accent1);
		transition: 0.5s;
	}

	.t_hotSpot::before {
		content: "" !important;
		border: white 1px solid;
		border-radius: 100%;
		position: absolute;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -52%) !important;
		/*     left:50%; top:50%; */
		/*     transform:translate(-30%, -50%); */
		/*     translate: -25% -25%; */
		height: 20px;
		width: 20px;
		transition: 0.5s;
	}

	.t_hotSpot::after {
		display: none !important;
	}
	.t_tooltip_content_wrap_mobile {
		display: block !important;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		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: 0.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;
	}

	.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, 0.7);
		top: 50%;
		left: 50%;
		width: 100vw;
		height: 100vh;
		transform: translateX(-50%) translateY(-50%);
		z-index: -1;
	}
}
