.from_group_check_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.check_from_group {
  position: relative;
  height: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
}
.selected label .icon {
  opacity: 1;
}
.check_from_group label img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.icon {
  height: 20px;
  aspect-ratio: 1;
  border: 2px solid #1aae9f;
  color: #1aae9f;
  font-size: 16px;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  top: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #8dd7cf;
  opacity: 0;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.icon::before {
  margin: 0;
  padding: 0;
}

.check_from_group input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;
}
.instock_form_wrapper {
  max-width: 380px;
  margin: 0 auto;
}

.instock_form_title h3 {
  font-size: 36px;
  margin-bottom: 15px;
}
.api_link {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
.MiniPlayer_main {
  display: flex;
  align-items: center;
}
.watch_video {
  margin-top: 20px;
  font-size: 15px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}
/* .tooltip_effect{

}
.Tooltip_api{

} */
/* tooltip class */
.tooltip_effect {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted gray;
}

.tooltip_effect .Tooltip_api {
  visibility: hidden;
  width: 100px;
  background-color: gray;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  top: -40px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip_effect:hover .Tooltip_api {
  visibility: visible;
}
