.tab-container {
    display: flex;
    max-width: 976px;
    height: 580px;
    /* border: 1px solid #444; */
    border-radius: 1px;
    overflow: hidden;
    font-family: sans-serif;
    position: relative;
    /* left: 592px; */
    top: -310px;
    margin: -231px 0px 0px -83px;
}

.tab-buttons {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    /* background-color: #222; */
    /* border-right: 1px solid #444; */
    width: 81px;
    height: 43px;
    margin: 0px 0px 0px 850px;
    position: absolute;
}

.tab-buttons label {
    padding: 5px;
    color: #787878;
    cursor: pointer;
    border: 1px solid #1a1a1a;
    transition: background 0.3s, color 0.3s;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.tab-buttons label:hover {
  background-color: #333;
  color: #fff;
}

.tab-content {
    flex-grow: 1;
    padding: 16px;
    /* background-color: #0000001a; */
    color: #818181;
    display: none;
    width: 863px;
    text-align: justify;
    height: 506px;
}

.tabs {
    margin: 41px 0px 0px 81px;
}

#content2 {
    overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#content2::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#content2  {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.tab-container input[type="radio"] {
display: none;
}

#tab1:checked ~ .tabs #content1,
#tab2:checked ~ .tabs #content2,
#tab3:checked ~ .tabs #content3 {
  display: block;
}

#tab1:checked ~ .tab-buttons label[for="tab1"], #tab2:checked ~ .tab-buttons label[for="tab2"], #tab3:checked ~ .tab-buttons label[for="tab3"] {
    background-color: #4d6e6e4f;
    color: #898989;
}