.app-bar{
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
}
.tab-content {
    /* padding:25px; */
    padding : 15px;
    /* max-width: unset !important; */
}

#material-tabs {
    position: relative;
    display: block;
    padding:0;
    border-bottom: 1px solid #e0e0e0;
}

#material-tabs>a {
    position: relative;
 display:inline-block;
    text-decoration: none;
    padding: 22px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    width: 49%;
    color: #424f5a;
    text-align: center;
    /* outline:; */
}

#material-tabs>a.active {
    font-weight: 700;
    outline:none;
}

#material-tabs>a:not(.active):hover {
    background-color: inherit;
    color: #7c848a;
}

/* @media only screen and (max-width: 520px) {
    .nav-tabs#material-tabs>li>a {
            font-size: 11px;
    }
} */

.yellow-bar {
    position: absolute;
    z-index: 10;
    bottom: 0;
    height: 3px;
    background: #4A87FA;
    display: block;
    left: 0;
    transition: left .2s ease;
    -webkit-transition: left .2s ease;
}

#tab1-tab.active ~ span.yellow-bar {
    left: 0;
    width: 50%;
}

#tab2-tab.active ~ span.yellow-bar {
    left: 50%;
    width: 50%;
}

/* #tab3-tab.active ~ span.yellow-bar {
    left: 253px;
    width: 135px;
}

#tab4-tab.active ~ span.yellow-bar {
    left:392px;
    width: 163px;
} */
.help-container{
    display: flex;
    flex-direction: column;
    padding: 16px;
    /* margin: 25px 15px 15px; */
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    background: #ffffff;
}
.about-header{
    color: #4A87FA;
    margin-bottom: 16px;
}
.about-text{
    color: darkgrey;
}

.accordion {
    /* background-color: #eee; */
    background-color: white;
    /* border-bottom: 1px solid black; */
    color: darkgrey;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }

  .accordion:focus{
    outline:unset;
  }
  
  .accordion-container {
    margin-bottom: 10px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.05);
  }

  .active-accordion {
    /* background-color: #ccc; */
    border-bottom: 1px solid grey;
    margin-bottom: 16px;
  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active-accordion:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

@media only screen and (min-width: 800px){
    .title-small-screen{
        display:none;
    }
    #material-tabs {
        width: 250px;
    }
    div.header-large-screen{
        box-shadow: unset;
        margin-left: unset;
    }
    /* .app-bar{
        margin-left: 250px;
    } */
}