html{
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    letter-spacing: 0.2px;
    margin: 0;
    --theme-color-purple-light-xxx: #f8f8ff;
    --theme-color-purple-light-xx: #f0eef7;
    --theme-color-purple-light-x: #c8c1e1;
    --theme-color-purple-light: #998bbe;
    --theme-color-purple-standard: #786ab5;
    --theme-color-purple-dark: #553e93;

    --theme-color-navy-light: #cbcfe1;
    --theme-color-navy-standard: #333b7e;

    color: var(--theme-color-purple-light);
    --serif: 'Adelle', 'Georgia', serif;
    --sans-serif: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
    font-family: var(--sans-serif);
}

@font-face {
   font-family: Poppins;
   src: url(../font/sans-serif/Poppins/Poppins-Regular.otf);
}

@font-face {
   font-family: Poppins;
   src: url(../font/sans-serif/Poppins/Poppins-Bold.otf);
   font-weight: bold;
}

/*@font-face {
   font-family: Practice;
   src: url(http://bag.linked-neuron-data.org/static/font/serif/Practice/PracticeBook.otf);
}

@font-face {
   font-family: Practice;
   src: url(http://bag.linked-neuron-data.org/static/font/serif/Practice/PracticeExtrabold.otf);
   font-weight: bold;
}*/

@font-face {
   font-family: Adelle;
   src: url(../font/serif/Adelle/Adelle_Reg.otf);
}

@font-face {
   font-family: Adelle;
   src: url(../font/serif/Adelle/Adelle_Bold.otf);
   font-weight: bold;
}

.node circle {
  fill: #fff;
  stroke: steelblue;
  stroke-width: 3px;
}

.node text {
  font: 12px sans-serif;
}

iframe{
    border: none;
}

.box {
    border:1px solid var(--theme-color-purple-light-x);
    min-height: 91px;
    background-color: white;
}

.box li{
    padding: 5px 10px;
    /*border:1px dashed rgba(43,10,61,.2);*/
}

.box li input{
    margin-left: 10px;
    font-size: 14px;
    background-color: var(--theme-color-purple-standard);
    border: none;
    border-radius: 3px;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 0.03rem;
}

.box li input:hover{
    background-color: var(--theme-color-purple-light);
}

.box p{
    font-size: 16px;
    margin: 0;
    padding: 5px 10px;
}

.box p input{
    margin-left: 10px;
    font-size: 14px;
    background-color: var(--theme-color-purple-standard);
    border: none;
    border-radius: 3px;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 0.03rem;
}

.box p input:hover{
    background-color: var(--theme-color-purple-light);
}

.flex{
    display: flex;
}

.flex-direction-column{
    flex-direction: column;
}

.flex-grow-1{
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center{
    justify-content: center;
}

.justify-space-between{
    justify-content: space-between;
}

.justify-space-around{
    justify-content: space-around;
}

.align-start{
    align-items: start;
}
.align-center{
    align-items: center;
}

.width-50-percent{
    width: 50%;
}

.width-100-percent{
    width: 100%;
}

.d-none{
    display: none;
}

.d-none-important{
    display: none; !important;
}

.d-block{
    display: block;
}

.inline-block{
    display: inline-block;
}

.margin-auto{
    margin: auto;
}

.offset-padding-left-10{
    padding-left: 10px;
}

.offset-padding-right-10{
    padding-right: 10px;
}

.offset-padding-top-30{
    padding-top: 30px;
}

.offset-padding-bottom-30{
    padding-bottom: 30px;
}

.offset-padding-top-70{
    padding-top: 70px;
}

.offset-padding-bottom-70{
    padding-bottom: 70px;
}

.offset-padding-top-100{
    padding-top: 100px;
}

.offset-padding-bottom-100{
    padding-bottom: 100px;
}

.offset-padding-top-150{
    padding-top: 150px;
}

.offset-padding-bottom-150{
    padding-bottom: 150px;
}

.offset-margin-top-100{
    margin-top: 100px;
}

.overflow-hidden{
    overflow: hidden;
}

.page-header{
    background-color: var(--theme-color-purple-light-xxx);
}

ul.navbar-ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.brand-logo{
    font-weight: bold;
    font-size: 22px;
    color: var(--theme-color-purple-standard);
    padding: 10px 48px 0px 48px;
    float: left;
    /*text-decoration: underline;*/
    font-family: var(--sans-serif);
    transition: 0.5s;
}

.brand-logo:hover{
    /*text-decoration: overline underline;*/
    /*transition: 0.5s;*/
}

.page-content{
    min-height: 700px;
    padding-bottom: 100px;
    background-color: var(--theme-color-purple-light-xxx);
}

li {
    list-style-type: none;
}

li .navbar-li{
  float: right;
}

li a{
  display: block;
  color: #666;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

a.navbar-li:hover:not(.active){
  color: var(--theme-color-purple-dark);
  background-color: #f0eef7;
}

li a:hover:not(.active) {
  /*background-color: #ddd;*/
  /*color: white;*/
  /*background-color: var(--theme-color-purple-light);*/
}

li a.active {
  color: white;
  background-color: var(--theme-color-purple-standard);
}

.headline-h1{
    font: 3rem var(--serif);
    font-weight: 700;
    color: var(--theme-color-purple-standard);
}

p.headline-p{
    line-height: 36px;
    color: var(--theme-color-purple-light);
    font-size: 18px;
}

.max-width-800{
    max-width: 800px;
}

.section-whole{
    /*max-width: 1100px;*/
}

.section-half{
    width: 100%;
}

.section{
    margin: 50px 20px;
    /*background: #ececec;*/
    background: white;
    padding: 18px 36px 48px;
    transition: all .5s ease;
    max-width: 100%;
}

.section:hover, .section:focus{
    box-shadow: 10px 10px 0 0 rgba(43,10,61,.2);
}

.section-title {
    font-size: 2.25rem;
    font-family: var(--serif);
    color: var(--theme-color-purple-dark);
    font-weight: 700;
    margin: 30px 0;
}

.section-title::after {
    content: "";
    display: block;
    margin-top: 8px;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--theme-color-purple-light-x);
}

.section-subtitle {
    font: 1.6rem var(--serif);
    color: var(--theme-color-purple-dark);
    margin: 21px 0 24px;
}

.section-subtitle::after {
    content: "";
    display: block;
    margin-top: 8px;
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(43,10,61,.2);
}

.section-guide {
    margin-bottom: 1.2rem;
}

.section-guide a{
    color: var(--theme-color-purple-light);
}

.section-guide a:hover{
    color: var(--theme-color-purple-standard);
}

.note{
  background-color: #fff3cd;
  border-color: #ffeeba;
  border-radius: 4px;
  padding: 8px 15px;
  color: #856404 ;
  font-size: 14px;
  margin-top: 0.5rem;
}

.note p{

}

.note a{
  color: #856404 ;
}

.page_footer {
    width: 100%;
    background-color: var(--theme-color-navy-standard);
}

.footer-h3{
    color: #fff;
    color: var(--theme-color-purple-light-x);
    font-weight: 600;
    font-family: var(--serif);
    font-size: 1.25rem;
}

.page_footer li{
    color: #fff;
    letter-spacing: 0;
    font-size: 14px;
}

.page_footer li a{
    display: inline;
    color: #fff;
    text-align: center;
    padding: 0;
    text-decoration: none;
    letter-spacing: 0;
}

.page_footer li a:hover{
    /*background-color: #666; !important;*/
    /*color: #3c3c3c;*/
    color: #929bc0;
}

.page_footer ul{
    padding-left: 0;
}

.table-container{
    margin: 6rem 2rem 4rem;
}