@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Rubik:400,500,700&subset=cyrillic");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&subset=cyrillic");
body {
    background-color: #fff;
    color: #091e42;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;

  }h1, h2, h3, h4, h5, h6 {
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-top: 0;
  }
  
  h1 {
    font-size: 46px;
    font-weight: 500;
  }
  
  h2 {
    font-size: 30px;
    font-weight: 500;
  }
  
  h3 {
    font-size: 28px;
    margin-bottom: 0px;
  }
  
  h4 {
    font-size: 22px;
  }
  
  h5 {
    font-size: 19px;
    margin-bottom: 0px;
  }
  
  h6 {
    font-size: 16px;
  }

  a {
    color: #158aff;
    text-decoration: none;
  }
  
  a:hover, a:active, a:focus {
    text-decoration: underline;
  }

  .accordion {
    background-color: #FCEC9E;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 1px solid white;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    content: "\2212";
    background-color: #488df7; 
    color: white
  }
  
  .accordion:after {
    content: '\002B';
    color: #488df7;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .active:after {
    content: "\2212";
    color: white
  }

  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  pre code {
    background-color: #eee;
    display: block;
    margin: 1px;
    padding: 1px;
  }  

