/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
* {
    box-sizing: border-box;
  }
  
article{
    max-width:960px; 
    margin: 0 auto; 
}
.container-header{
    max-width: 960px !important;
    width: 100%;
    margin: 0 auto !important;
    position: fixed;
    top: 0;
    z-index: 1030;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff !important;
    border-bottom: 1px solid #dee2e6 !important;
    border-radius: 0 !important;
    box-shadow: 0 3px 3px hsla(200, 3%, 53%, .1);
    height: 95px;
}
.container-main{
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff !important;
    border-radius: 0 !important;
    box-shadow: 0 3px 3px hsla(200, 3%, 53%, .1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 105px;
    position: relative;
}

h2{
    margin-top: 0; 
    text-align: center;
    padding-top:0;
}
.toggle-block {
  max-width: 960px;
  margin: 2rem auto;
}

.toggle-btn {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: left;
}

.toggle-content {
  overflow: hidden;
  max-height: 0;
 background-color: #fafafa;
  padding: 0 10px;
}

/* Optional: when open, give extra space */
.toggle-content.open {
  padding: 10px;
}