﻿



/* Accordion styles */
.tabs {
  overflow: hidden;
}
.tabs input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.tab {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--product-accordian-border);
}
.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 40px 0px;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    color: var(--product-accordian-head);
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
/*.tab-label:hover {
  background: #1a252f;
}*/
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background: #1a252f;
}

input:checked + .tab-label {
  background: transparent;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}





.accordion {
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    padding: 40px 15px;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    color: var(--product-accordian-head);
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.accordion.active, button.accordion:hover {
        /*background-color: #ddd;*/
    }

.accordion:after {
        content: '+';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

.accordion.active:after {
        content: "\2212";
    }

div.panel {
    padding:0px 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid var(--product-accordian-border);
    background:transparent;
    margin-bottom:0px;
}

.panel h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--product-detail-sub-head);
}

.product-details-table {
    /*width:100%;*/
}
.product-details-table td {
    padding:15px 0px;
    border-bottom:1px solid var(--primary);
    text-transform:capitalize;
}

.accordion-description-box {
    border-bottom: 1px solid var(--primary);
    border-top: 1px solid var(--primary);
    padding:30px 15px;
}
    .accordion-description-box h4 {
        font-size: 25px;
        text-align: center;
        color: var(--primary);
        text-transform: capitalize;
    }