.floating-menu {
    font-family: sans-serif;
    padding: 0px;;
    width: auto;
    max-width: 280px;
    z-index: 100;
    position: fixed;
    top: 150px;
    left: 2px;
}
.floating-menu a,
.floating-menu td {
    font-size: 12px;
    margin: 0 0.5em;
    color: black;
    text-align: left;
    text-decoration: none;
}
.floating-menu table {
    border: none;
}
.floating-menu table>tr {
    border: none;
}
.floating-menu a:hover,
.floating-menu td:hover {
    margin: 0 0.5em;
    color: black;
    font-weight: bold;
}
#acctable {
    display: none;
    background: #96cdb2;
}


body.resize-font-200 {
    font-size: 200%;
}
body.resize-font-190 {
    font-size: 190%;
}
body.resize-font-180 {
    font-size: 180%;
}
body.resize-font-170 {
    font-size: 170%;
}
body.resize-font-160 {
    font-size: 160%;
}
body.resize-font-140 {
    font-size: 140%;
}
body.resize-font-120 {
    font-size: 120%;
}

html.resize-font-200 {
    font-size: 200%;
}
html.resize-font-190 {
    font-size: 190%;
}
html.resize-font-180 {
    font-size: 180%;
}
html.resize-font-170 {
    font-size: 170%;
}
html.resize-font-160 {
    font-size: 160%;
}
html.resize-font-140 {
    font-size: 140%;
}
html.resize-font-120 {
    font-size: 120%;
}

.grayscale * {
    color: whitesmoke !important;
    background: #4a4a4a !important;
}
.grayscale img, .grayscale img * {
    filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.highcontrast * {
    background: #400000 !important;
    background-color: #400000 !important;
    color: #00FFFF !important;
}

.invert * {
    color: yellow !important;
    background: #4a4a4a !important;
}

.lightbg * {
    background: #fff !important;
    color: #000 !important;
}
.links-underline a, .links-underline a * {
    text-decoration: underline !important;
    text-decoration-line: underline !important;
    text-decoration-style: initial !important;
    text-decoration-color: initial !important;
}

.readable-font * {
    font-family: Verdana,Arial,Helvetica,sans-serif !important;
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free" !important;
}

.fa-1-2x {
    font-size: 1.3rem;
}

.fa-wheelchair {
    padding-left: 10px;
}


/*  
    Custom design
*/

.floating-menu{
    max-width: 340px;
}

#acctable {
    padding: 20px;
    background-color: #fff; 
    box-shadow: 5px 3px 20px -7px rgb(0 0 0 / 15%);
    border-radius: 0px 20px 20px 0px;
}
.acc_tabs_holder{
    column-fill: auto;
    display: grid;
    grid-column-gap: 0px;
    column-gap: 0px;
    width: 100%;
    list-style: none;
    padding: 0px;
    grid-template-columns: repeat(2, 1fr);
    border: solid 1px #ddd;
    border-radius: 7px;
    overflow: hidden;
    margin: 0px;
}
.acc_tabs_holder li{
   padding: 20px 0px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
}
.acc_tabs_holder li:nth-child(odd){
   border-right: 1px solid #ddd;
}
.acc_tabs_holder li{
   border-bottom: 1px solid #ddd;
}
.acc_tabs_holder li:last-child {
   border-bottom: none;
}
.acc_tabs_holder li:hover{
background-color: #f1f1f1;
}
.acc_tabs_holder li i{
    display: block;
    text-align: center;
    padding-bottom: 10px;
    color: #17a2b8;
    font-size: 1.75rem;
}
.acc_tabs_holder li i.fa-rotate-180{
    padding-top: 10px;
    padding-bottom: 0px;
}


.floating-menu .acc_tabs_holder a{
    color: #222;
    font-weight: 400;
}
.floating-menu .acc_tabs_holder a:hover{
    margin: 0 0.5em;
    color: #222;
    font-weight: 400;
    text-decoration: none;
}
.floating-menu .acc_icon_holder{
    background-color: rgb(var(--theme-primary-color))!important;
    opacity: .75 !important;
    padding: 0px;
    width: 65px;
    position: relative;
    border-radius: 0px 20px 20px 0px;
    -webkit-transition: all 0.2s cubic-bezier(.5, .24, 0, 0.5);
    transition: all 0.2s cubic-bezier(.5, .24, 0, 0.5);
}
.floating-menu.open .acc_icon_holder{
  
        border-radius: 0px 20px 0px 0px;
   
}
.floating-menu .acc_icon_holder a{
    color: #fff;
    padding: 10px 0px;
    display: inline-block;
}
.acc_icon_holder i{
    z-index: 99;
    position: relative;
}
.acc_icon_holder::before{
content: "";
    position: absolute;
    height: 30px;
    width: 36px;
    bottom: 0px;
    right: 10px;
    border-radius: 0px 0px 0px 20px;
    box-shadow: rgb(var(--theme-primary-color)) -18px 0px 0px 0px;
    z-index: 90;
    -webkit-transition: all 0.2s cubic-bezier(.5, .24, 0, 0.5);
    transition: all 0.2s cubic-bezier(.5, .24, 0, 0.5);
}
.floating-menu.open .acc_icon_holder::before{
   right: -36px;
}

.floating-menu{
    height: 60px;
    width: 60px;
    left: 0;
}
.floating-menu.open{
    height: auto;
    width: auto;
}
.floating-menu #acctable{
    visibility: hidden;
    opacity: 0;
    cursor: none;
    z-index: -1;
}
.floating-menu.open #acctable{
    visibility: visible;
    opacity: 1;
    cursor: default;
}


@media only screen and (min-width: 991.98px){
    .floating-menu  #acctable{
        left: -320px !important;
         -webkit-transition: all 0.2s cubic-bezier(.5, .24, 0, 0.5);
        transition: all 0.2s cubic-bezier(.5, .24, 0, 0.5);
        position: relative;
        display: block !important;
        z-index: -1;
        opacity: 1;
        visibility: visible;

    }
    .floating-menu.open  #acctable{
        left: 0 !important;
        position: relative;
        z-index: 10;
         
    }
    .left_panel__open .floating-menu{
        left: 302px;
    }

    .left_panel.open.rank_up{
    z-index: 999;
    }
    .floating-menu.hide{
        opacity:0;
        visibility: hidden;
        display: none !important;

    }
    .rank_up .floating-menu.open.hide{
        opacity: 1;
        visibility: visible;
        display: block !important;
    }
}
@media only screen and (max-width: 991.98px){
    .left_panel__open .floating-menu .acc_icon_holder i{
        color: rgb(var(--theme-primary-color))!important;
    }
    .left_panel__open .floating-menu .acc_icon_holder {
        background-color: #fff !important;
        opacity: 1 !important;
    }
    .left_panel__open .acc_icon_holder::before{
        box-shadow: #fff -18px 0px 0px 0px;
    }
    .floating-menu{
        height: 50px;
        width: 55px;
        left: 0;
        bottom: 10px;
        top: auto;
    }
    .acc_icon_holder i{
        font-size: 1.5rem;
    }
    .floating-menu .acc_icon_holder{
        width: 55px;
    }
    .acc_tabs_holder li{
        padding: 15px 0px;
    }
}