body{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #323232;
    font-weight: 500;
    background-color: #ebebeb;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}
audio{
    width: 100%;
    outline: none;
}

#manualDigital{
    display: flex;
    justify-content: end;
}

/*
** Navigation
*/
.md-navigation{
    width: 100%;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px 5px 30px;
}
.md-navigation .btn{
    width: 200px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 15px;
    font-weight: 500;
}
.md-navigation .btn i{
    font-size: 21px;
}
.md-navigation-features{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.md-navigation-feature{
    min-width: 100px;
    height: 45px;
    border: 2px solid #ccc;
    border-radius: 15px;
    padding-right: 30px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

/*
** Sidebar
*/
.md-sidebar{
    width: 250px;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    border-right: 1px solid #ccc;
    overflow: hidden;
}
.md-sidebar-title{
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #ccc;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
.md-sidebar-pages{
    width: 100%;
    height: calc(100vh - 70px);
    padding-top: 30px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 30px;
    text-align: center;
    overflow-y: scroll;
}
.md-sidebar-pages::-webkit-scrollbar {
    width: 5px;
}
.md-sidebar-pages::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.md-sidebar-pages::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 5px;
}
.md-sidebar-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.md-sidebar-page img{
    width: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.3s;
}
.md-sidebar-page img:hover{
    border: 1px solid #007bff;
}



/*
** Content
*/
.md-content{
    padding-top: 20px;
    padding-bottom: 120px;
    width: calc(100% - 250px);
    overflow-x: hidden;
}
.md-content-pages{
    width: 100%;
    padding: 0 110px;
}
.md-content-page{
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
}
.md-content-page img{
    width: 100%;
}
.md-content-page-link{
    position: absolute;
    top: 45.5%;
    left: 7%;
    width: 82%;
    height: 4%;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid red;
    z-index: 3;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: start;
    justify-content: start;
}
.md-content-page-link:hover{
    background-color: rgba(255, 0, 0, 0.3);
}
.md-content-page-link-icon{
    display: inline-flex;
    width: 1px;
    height: 1px;
    position: relative;
}
.md-content-page-link-icon-circle{
    position: absolute;
    top: 0;
    left: -40px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid red;
    display: flex;
    align-items: center;
    justify-content: center;
}
.md-content-page-link-icon-circle img{
    width: 20px;
    position: relative;
}
.md-content-page-anchor{
    width: 100%;
    height: 100px;
}



/*
** Mobile
*/
.md-navigation-mobile-feature{
    display: none;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: start;
    padding-left: 20px!important;
    padding-right: 20px!important;
    height: 45px!important;
}

.md-navigation-mobile-feature span{
    font-size: 10px;
    line-height: 1;
}
.mobile-titles{
    display: none;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

@media(max-width: 1560px){
    .md-content-pages{
        padding: 0 30px;
    }
    .md-sidebar {
        width: 15%;
    }
    .md-content{
        width: 85%;
    }
}
@media(max-width: 992px){
    .md-sidebar {
        display: none;
    }
    .md-content{
        width: 100%;
    }
    .md-navigation-feature{
        font-size: 14px;
        min-width: unset;
        height: 35px;
        padding-left: 10px;
        padding-right: 10px;
        border: 1px solid #ccc;
    }
    .md-content-pages {
        padding: 0 10px;
    }
    .md-content-page-anchor{
        height: 75px;
    }
}
@media(max-width: 768px){
    .md-navigation-feature{
        display: none;
    }
    .md-navigation-mobile-feature{
        display: flex;
    }
    .md-navigation {
        display: none;
    }
    .mobile-titles {
        display: block;
    }
    .md-navigation{
        padding: 5px 10px 5px 10px;
    }
    .md-content-page-anchor{
        height: 35px;
    }
    .md-content-page-anchor:first-of-type{
        height: 100px;
    }
    .md-content-page-link-icon-circle{
        display: none;
    }
}
@media(max-width: 376px){
    .md-navigation  {
        display: none;
    }
    .md-navigation-mobile-feature{
        display: none;
    }
    .md-content-page-link-icon-circle{
        display: none;
    }
    .md-content-page-anchor:first-of-type{
        height: 20px;
    }
}
@media(max-width: 500px){

}








