/* Style Settings */


/* MMX  NO Arrow in list accordion Items */   
.mmxnoarrow  {
  list-style: none;
}
/* NO Arrow in list accordion Items for Webkit,Apple browsers */
.mmxnoarrow::-webkit-details-marker {
  display: none;
}


/* MMX Base */
.mmxline{
        border-top: 1px solid #CCC;
        -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        padding: 0px 0;
        margin-top: 20px;
        margin-left: 0px;
        background: #fff;
        -webkit-transition: 0.2s 0s;
        -o-transition: 0.2s 0s;
        transition: 0.2s 0s; 
      }




/* @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); */
:root {
    --bgColor: white;
    --accentColor: #4A7DBC;     /*mmx--original #39e09b*/
    --font: 'Karla', sans-serif;
}

body{
    background-color: var(--bgColor);
}

#userPhoto{
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#userName{
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link{
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.7rem;
    letter-spacing: .1rem; /*letter-spacing: .1rem;*/
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--accentColor) 2px;
}

.link:hover{
    background-color:#4A7DBC ; /* WAS using white , for white can use var(--bgColor)*/
    color:#fff ;  /* WAS var(--accentColor)*/
}
