.pt-nav .slicknav_item .slicknav_arrow, .pt-nav ul{
  display: none;
}

.main-nav li div.pt-tooltip{
    padding: 1rem;
  }
  
  li:hover .pt-tooltip {
    opacity: 1;
  }

.main-nav li.pt-nav {
  position: relative;
}

.main-nav li.pt-nav ul {
  position: absolute;
  min-width: 359px;
  left: 0;
}

.main-nav li.pt-nav ul .pt-tooltip{
  font-size: .8rem;
  font-weight: normal;
  line-height: 1.2;
  padding: 2rem 2rem 1rem 2rem;
}

.pt-popup {
  display: none;
  position: fixed;
  background-color: #f7f7f7;
  color: #006241;
  width: 320px;
  height: 135px;
  padding: 1rem;
  bottom: 220px;
  right: 65px;
  z-index: 9999;
}

.pt-popup-link{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.pt-popup img {
  width: 30%;
}

.pt-popup-link h3{
    line-height: 1.1;
    font-size: 1.5rem;
    font-weight: bold;
}

.pt-popup-link p{
  margin: 0;
  font-size: 1.2rem;
}

a.pt-popup-link:hover{
 text-decoration: none;
 color: #000;
}

#pt-popup-close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

#pt-popup-close-btn img {
  width: 30px;
  height: 30px;
}


.pt-tooltip {
  display: flex;
  gap: 1rem;
}

.pt-tooltip img{
 width: 18px;
 align-self: flex-start;
}

@media only screen and (max-width:992px) {
  .main-nav li.pt-nav ul {
    display: none;
  }
}

.product-pt-badge {
  z-index: 999;
  background-color: #FFEE00;
  color: #000;
  padding: 1px 15px;
  font-size: 11px;
  position: absolute;
  right: 5px;
  top: 5px;
}

.product-pt-crossover-badge {
  z-index: 999;
  background-color: #006241;
  padding: 4px 10px;
  position: absolute;
  right: 5px;
  top: 5px; 
  cursor: pointer;
}

/*.product-pt-crossover-badge:hover > .product-pt-tooltip {
  opacity: 1;
  visibility: visible;
}*/

.product-pt-tooltip .tooltip-gap {
  position: absolute;
  width: 100%; /* Adjust the width as needed */
  height: 10px; /* Adjust the height as needed */
  background-color: transparent; /* Set background to transparent */
  top: -10px; /* Adjust the top value to position above the tooltip */
  left: 0;
}

.product-pt-crossover-badge img {
  width: 22px;
}

.product-pt-tooltip {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: #F6F6F6;
  color: #000;
  border-radius: 4px;
  border: 1px solid #A7A7A7;
  padding: 1.8rem 2rem 1rem 2rem;
  font-size: .8rem;
  font-weight: normal;
  line-height: 1.2;
  z-index: 999;
  width: 510px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  transform: translateX(-300px);
  transition: opacity 0.3s;
  top: 50px;
}

.product-pt-tooltip::before {
  content: "";
  position: absolute;
  top: -20px; /* Adjust this value to position the arrow */
  left: 310px;
  margin-left: -10px; /* Half of the arrow's width */
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #A7A7A7 transparent; /* Arrow color and size */
  z-index: 999;
}

.product-pt-tooltip::after {
  content: "";
  position: absolute;
  top: -19px; /* Adjust this value to position the arrow */
  left: 310px;
  margin-left: -10px; /* Half of the arrow's width */
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #F6F6F6 transparent; /* Arrow color and size */
  z-index: 999;
}

.product-pt-tooltip-content {
  display: flex;
  gap: 2rem;

}

.product-pt-tooltip-content img{
 width: 38px;
 align-self: flex-start;
}

.product-pt-tooltip-content div {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: left;
}

.pt-msg-box {
  border: 2px solid #006241;
  background-color: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: 
    "icon text"
    ". link";
  align-items: center;
  padding: 10px;
  position: relative;
  gap: 0px 20px;
  padding: 1.5rem 1rem .5rem 1rem;
  width: 80%;
}

.pt-msg-icon {
  grid-area: icon;
  
}
.pt-msg-icon img {
  width: 30px;
}

.pt-msg-text {
  grid-area: text;
  align-self: center;
  color: #006241;
}

.pt-read-more {
  grid-area: link;
  justify-self: end;
  align-self: end;
  color: #006241; /* Green text */
  text-decoration: underline;
  font-size: 14px; /* Adjust as needed */
}
.pt-read-more:hover{
  text-decoration: none;
}

.pt-legacy{
  border-color: gray;
  cursor: pointer;
}

.pt-legacy .img-fluid, .pt-legacy .lp-link{
  opacity: .5;
}

.lp-thumb {
  position: relative;
}

ul#info-tabs .nav-item.pt-crossover-tab {
  background-color: #000;
}

ul#info-tabs .nav-item.cad-tab {
      background-color: #006241;
    }

ul#info-tabs a.pt-crossover-link, ul#info-tabs a.cad-link {
  text-align: left;
  padding: .4rem 2rem .4rem 1rem;
}

ul#info-tabs a.pt-crossover-link:hover, ul#info-tabs a.cad-link:hover{
 color: #CCC;
}

.pt-crossover-tab, .cad-tab {
  display: flex;
  align-items: center;
}

.pt-crossover-tab img{
  width: 22px;
  align-self: center;
  margin-left: 20px;
}

.cad-tab img {
  width: 35px;
  align-self: center;
  margin-left: 10px;
}

.pt-literature-thumbs {
  width: 530px; 
  margin: 0 0 2rem 2rem;
}

@media only screen and (max-width:992px) {
  .pt-literature-thumbs {
    width: auto; 
    margin: 0;
  }
}

.pt-landing-applications-bg{
  background: url(/images/industry/pt-series/pt-landing-applications-bg.jpg) no-repeat 50%;
  background-size: cover;
  width: 100%;
  color: #fff;
  text-shadow: 2px 2px 3px #000;
}

@media only screen and (max-width: 576px){
  .pt-crossover-tab, .cad-tab {   
    justify-content: center;
  }
  .pt-msg-box {
    width: 100%;
  }
}
/*
@media only screen and (max-width: 1236px){
  ul#info-tabs a.nav-link {
      line-height: 1.3;
      font-size: 12px;
  }
}

@media (min-width: 1043px) and (max-width: 1627px){
  .container {
      max-width: 85%;
  }
}

@media (max-width: 1042px){
  .container {
      max-width: 95%;
  }
} */


