/* Hotspots.css file */
.hotspot-holder {
	position: relative;
}

.hotspot {
	position: absolute;
	transform: translate(-50%, -50%);
}

.hotspot-pin {
	background-color: #fff;
	border-radius: 50%;
	cursor: pointer;
	width: 20px;
	height: 20px;
	position: relative;
}

.hotspot-pin {
	animation: pulse 1.5s ease-out infinite;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}

	100% {
		transform: scale(0.8);
		opacity: 0.7;
	}
}

.hotspot-content {
	background-color: #fff;
	border-radius: 5px;
	padding: 10px;
	display: none;
	position: absolute;
	opacity: 0;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: hidden;
	max-width: calc(100vw - 20px);
	white-space: nowrap;
	box-shadow: 2px 2px 12px;
}

.hotspot:hover .hotspot-content {
	display: block;
	opacity: 1;
}
.tns-outer {
	position: relative;
  }
  [data-controls] {
	border: 0;
	padding: 0;
	font-size: 30px;
	position: absolute;
	top: 50%;
	margin-top: -18px;
	z-index: 1;
	background: transparent;
  }
  [data-controls="prev"] {
	left: 20px;
  }
  [data-controls="next"] {
	right: 20px;
  }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #0055b8; /* Adjust color as needed */
    cursor: pointer;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8); /* Background color of arrows */
    padding: 10px;
    border-radius: 50%;
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

/* Create arrow icons using pseudo-elements */
.prev-arrow::before, .next-arrow::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #0055b8 transparent transparent;
}

.slider-arrow:hover::before, .slider-arrow:hover::before {
    border-color: transparent #003a70 transparent transparent;
}

.quick-link_product{
	background-color: #d5d5d5;
	border:1px solid #d5d5d5;
	color: #212529!important;
	text-decoration:none!important;
	padding: .375rem .75rem;
	border-radius: 30px;
	line-height: 1.5;
	position: relative;
	text-align: center;
    border-radius: 30px;
	font-family: "Montserrat", Sans-serif;
    font-weight: 600;
	font-size: 1rem;
}

.quick-link_product:hover{
	background-color:#000000;
	border:1px solid #000000;
	color:white!important;
}

.next-arrow::before {
    transform: rotate(180deg); /* Rotate next arrow */
}

.product-card {
	display: inline-flex!important;
	flex-direction: column;
	align-items: center;
	vertical-align: top;
	z-index: 1002;
	box-sizing: border-box;
	flex-grow: 1;
	padding-bottom: 20px;
}

.product-card img {
	max-width: 100%;
	height: auto;
	max-height: 150px;
	/* Ensure images fit within the card height */
}

.product-card h2 {
	font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
	color: #000000;
    font-family: "Montserrat", sans-serif;
	max-width: 90%;
	text-align:center;
}

.noselect {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.text-card_part {
	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: space-between;
}

.product-card p {
	font-size: 14px;
	color: #666;
	max-width:90%;
	text-align: center;
}

.hotspot-title.text-light {
	color:white!important;
}

.inner-card_part{
	display:flex;
	justify-content: center;
}

.hotspot-title.text-dark {
	color:black!important;
}

.inner_title-section h2{
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 26px;
	letter-spacing: normal;
	font-family: "Montserrat", Sans-serif;
}

.tns-inner {
	margin: 0px 20px!important;
    padding-left: 20px;
    overflow: hidden;
}

/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
	.hotspot-content {
		position: fixed;
		left: 0;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		padding: 20px;
		box-sizing: border-box;
		min-width:fit-content;
	}
	.tns-inner {
		padding-left: 10px;
	}
}
select[multiple] {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
}