body,html{
    font-family: Arial, sans-serif;
    width:100%;
    height: 100%;
    padding:0;
    margin: 0;
}

.navigation-logo{
    position: fixed;
    z-index: 0;
    top: 10px;
    left: 10px;
    width: 36px;
    padding: 6px;
    height: 36px;
    font-size: 21px;
    border-radius: 8px;
    line-height: 36px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
}

.visit-nav{
    position: fixed;
    z-index: 0;
    bottom: 50px;
    right: 10px;
    width: 70vw;
    max-width: 300px;
    padding: 20px;
    font-size: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 30px;
    line-height: 36px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    background-color: rgb(48, 127, 222);
}

.visit-nav .close{
    position: absolute;
    top: 0;
    padding: 8px;
    right: 5px;
    font-size: 21px;
    line-height: 21px;
    color: #fff;
    cursor: pointer;
}

.visit-nav h3{
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.visit-nav .get-started{
    display: block;
    color: rgb(48, 127, 222);
    font-size: 14px;
    background-color: #fff;
    border-radius: 100px;
}



.navigation-logo img{
    width: 100%;
}


.navigation-sticky{
    position: fixed;
    z-index: 100;
    top: 10px;
    right: 10px;
    width: 36px;
    padding: 6px;
    height: 36px;
    font-size: 21px;
    border-radius: 8px;
    line-height: 36px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.75);
}

.menu-navigation-wrapper{
    position: absolute;
    box-sizing: border-box;
    padding: 15px 25px;
    top: 10px;
    left: -500px;
    bottom: 10px;
    border-radius: 8px;
    overflow-y: scroll;
    width: calc(100% - 77px);
    max-width: 450px;
    background-color: rgba(255,255,255,1);
    transition: left 0.5s ease;
}


.menu-navigation-wrapper.active{
    left: 10px;
}

.menu-navigation-wrapper .links{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.menu-navigation-wrapper .links a{
    display: inline-block;
    height: 36px;
    width: 36px;
    font-size: 18px;
    text-align: center;
    line-height: 36px;
    border-radius: 8px;
    border: 1px #ebebeb solid;
    background-color: #0c5c9e;
    color: #fff;
}

.menu-navigation-wrapper .logo img{
    max-width: 100%;
    margin-bottom: 20px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    display: flex;
    justify-content: space-between;
    background: none;
    /*color: #444;*/
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-weight: bold;
    /*transition: 0.4s;*/
}


/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 5px 0;
    background-color: white;
    display: none;
    overflow: hidden;
}

.panel > div {
    display: flex;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.25;
    padding: 12px 5px;
    border-bottom: 1px solid #ebebeb;
    color: rgba(0,0,0,0.8);
}

.panel > div:last-child {
    border: 0;
}


.panel > div > span:first-child{
    display: block;

    width: 35px;
    text-transform: uppercase;
    color: rgb(48, 127, 222);
}