
.big-acc {
    min-width: 300px;
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}
.big-acc *{
    font-family: "Jost", sans-serif;
}
.big-acc-bounds {
    min-height: 100px;
}
.big-acc-inner {
    position: relative;
}

.big-acc-part {
    flex-grow: 1;
    padding: 4rem;
    max-height: calc(90vh - 200px);
}
@media (max-width: 800px) {
    .big-acc-inner {
        flex-direction: column;
    }
    .big-acc-part {
        overflow: initial;
        padding: 2rem;
        max-height: fit-content;
    }
}
.big-acc-cards {
    display: flex;
    gap: 40px;
}
.big-acc-card-batch {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
    flex-grow: 1;
}
.acc-big-batch{
    flex-grow:2;
}
@media (max-width: 800px) {
    .big-acc-cards {
        flex-wrap: wrap;
    }
}
.big-acc-card {
    background-color: #fff;
    height: auto;
    padding: 40px;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
}

.big-acc-card-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #777;
    text-align: center;
}
.big-acc-card-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}
.big-acc-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 0;
}
.big-acc-card-content:last-of-type {
}
.big-acc-card-content-label {
    font-weight: 800;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
}
.big-acc-card-content-data {
    text-align: center;
    position: relative;
}
.acc-smalltext {
    font-size: 12px;
    color: #777;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    bottom: -10px;
}





.slideThree {
    width: 80px;
    height: 26px;
    background: #8a2332;
    margin: 20px auto;
    position: relative;
    border-radius: 50px;
    box-shadow: inset 0px 1px 1px rgba(99, 99, 99, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}
.slideThree:after {
    content: 'OFF';
    color: #000;
    position: absolute;
    right: 10px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
}
.slideThree:before {
    content: 'ON';
    color: #fff;
    position: absolute;
    left: 10px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
}
.slideThree label {
    display: block;
    width: 34px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 1;
    background: #fcfff4;
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}
.slideThree input[type=checkbox] {
    visibility: hidden;
}
.slideThree input[type=checkbox]:checked + label {
    left: 43px;
}