@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);


.fflex {
display:flex;
gap:5px;
    align-items: center;
}

i .rred {
color:red;
}

#infont p{
font-size:18px;
}

table tr:hover td {
    background: none;
}

#no li {
    list-style: none;
    font-size: 25px;
    font-family: "Patua One",Arial,Tahoma,sans-serif;
    font-weight: 300;
    line-height: 1.4;
}
#pack p {
margin: 0px 0 0px;
}


#pack table {

    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: start;

}

#pack td{
text-align:start;
}
.tab-wrapper {
  background-color: #fff;
  /* border-radius: 10px; */
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.tab-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.tab-header .tab-btn {
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  /* border: 1px solid #6a00fb; */
  background-color: transparent;
  transition: all 0.3s ease;
  box-shadow: none;
}
.tab-header .tab-btn:focus {
  outline: none;
}
.tab-header .tab-btn i {
  margin-right: 5px;
  font-size: 10px;
}
.tab-header .tab-btn:hover,
.tab-header .tab-btn.active {
  color: #6a00fb;
}

.tab-header .underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  transform-origin: left;
  background-color: #6a00fb;
  transition: all 0.3s ease;
}

.tab-body {
  display: flex;
  overflow: hidden;
}
.tab-body .tab-content {
  min-width: 100%;
  padding: 20px;
  font-size: 12px;
  transition: all 0.3s;
  text-align: center;
}
.tab-wrapper[rounded] {
  border-radius: 10px;
}
.tab-header[full-width] .tab-btn {
  flex: 1;
  text-align: center;
}
.tab-header[background] {
  background-color: #e22e22;
}
.tab-header[background] .tab-btn {
  color: #fff;
}
.tab-header[background] .tab-btn.active {
  color: #000000;
}
.tab-header[background] .tab-btn.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.tab-header[background] .underline {
  background-color: #fff;
  height: 100%;
  bottom: 0;
}
.tab-header[border] .tab-btn {
  border: 1px solid #e5e5e5;
}
.tab-header[border] .tab-btn.active {
  border: 1px solid #6a00fb;
}
.tab-header[border] .tab-btn.active {
  color: #fff;
}
.tab-header[border] .underline {
  height: 100%;
  bottom: 0;
}

/* Credits */

.credits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #fff;
  background-color: #6a00fb;
}
.credits a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.credits a:hover {
  text-decoration: underline;
}

