
#product_details .details-text{
  font-family:Verdana, Geneva, Tahoma, sans-serif
}

#product_details nav > .nav.nav-tabs{

  border: none;
    color:#fff;
    background:#002129;
    border-radius:0;

}
#product_details nav > div a.nav-item.nav-link

{
  border: none;
    padding: 18px 25px;
    color:#fff;
    background:#002129;
    border-radius:0;
}
#product_details nav > div a.nav-item.nav-link.active
{
  border: none;
    padding: 18px 25px;
    color:#fff;
    background:#3D8B37;
    border-radius:0;
}

#product_details nav > div a.nav-item.nav-link.active:after
 {
  /* content: ""; for the down arrow*/
  position: relative;
  bottom: -60px;
  left: -10%;
  border: 15px solid transparent;
  border-top-color: #3D8B37 ;
}
#product_details .tab-content{
  background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top:5px solid #3D8B37;
    border-bottom:5px solid #3D8B37;
    padding:30px 25px;
}

#product_details nav > div a.nav-item.nav-link:hover,
#product_details nav > div a.nav-item.nav-link:focus
{
  border: none;
    background: #3D8B37;
    color:#fff;
    border-radius:0;
    transition:background 0.20s linear;
}
#product_details .mytabs{
  width:60%
}
#product_details .myborder{
  border-right:1px solid white;
}

@media all and (max-width: 992px) {
  .mytabs{width:100%;}

}	
/* MODAL */
#product_details #myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#product_details #myImg:hover {opacity: 0.7;}

/* The Modal (background) */
#product_details .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
#product_details .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 500px;
}

/* Caption of Modal Image */
#product_details #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
#product_details .modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
#product_details .close {
  position: fixed;
  top: 35px;
  right: 362px;
  color: white; 
  font-size: 100px;
  font-weight: bold;
  transition: 0.3s;
}

#product_details .close:hover,
#product_details .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media all and (max-width: 992px) {
	#product_details .close{   position: fixed;
    top: 90px;
    right: 12px;
    color: white; 
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s; }
}	