﻿
.preload * {
    transition: none !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--winhead);
    display: flex;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.4);
    opacity:1;
    z-index:99;
}

.tit-topc{
    position:fixed;
    left:0px;
    top:0px;
    color:var(--winhead-tit-clr);
    width: 100%;
    height:40px;
    padding:0px;
    font-size:18px;
    z-index:0;
    opacity:1;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.page-footer {
    background:var(--pgfootbg)!important;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
}


.header__button {
    width: 40px;
    flex-shrink: 0;
    background: none;
    outline: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
     z-index:10;
}
 
.nav__drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999991;
    height: 100vh;
    width: 280px;
    text-decoration: none;
    background: var(--drawer-bg)!important;
    transform: translateX(-280px);
    transition: transform 15s;

    text-decoration: none;
    color: white;
    font-size: 16px;
    padding-left: 2px;
    transition: 0.5s;
    animation: navcloseeffect-anim 0.5s;
    overflow-y:auto;
}

.nav--open .nav__drawer {
    transform: translateX(0);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    animation: navopeneffect-anim 0.3s;
}
@keyframes navopeneffect-anim {
    0% {transform: translateX(-100%);} 
    100% {transform: translateX(0%);} 
}  
@keyframes navcloseeffect-anim {
    0% {transform: translateX(0);} 
    100% {transform: translateX(-100%);} 
}

.nav__link {
    display: flex;
    align-items: center;
    color: var(--drawer-link-clr)!important;
    font-weight: 100;
    font-size: 19px;
    text-decoration: none;
    padding: 12px 15px;
    list-style: none;
    display: block;
    line-height: 40px;
    border-left: 5px solid transparent;
    border-bottom: 1px solid gray;
    cursor: pointer;
    text-decoration: none;
}
.nav__link__logoff {
    bottom: 5px;
    position: absolute;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.nav__link > i {
    margin-right: 15px;
}

.nav__link--active {
    color: #009578;
}

.nav__link--active,
.nav__link:hover {
    background: var(--drawer-hov-bg); 
    color: var(--drawer-hov-clr);
    border-left: 5px solid var(--drawer-hov-left-bdr);
}
.nav__link:hover .mmnuico {
    font-size:19px;
}
 
.nav__overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background:  var(--drawer-overl); 
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s;
    visibility: hidden;
}

.nav--open .nav__overlay {
    visibility: visible;
    opacity: 1;
}

.mmnuico {
    padding-left:15px;
    font-size:18px;
    font-weight:700;
}
 
.nav-mnuimg {
    height:48px;
    border-radius:10px;
}
.nav-mnuimg:hover {
    border:solid 4px #dddddd;
    border-radius:50%;
}

.navbtm {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 55px;
    box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.5);
    background-color:var(--navbtm-bg)!important;
    display: flex;
    overflow: hidden;
    border-radius:30px 30px 0px 0px;
}

.navbtm__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 11px;
    color: var(--navbtm__link-clr) !important;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}

.navbtm__link:hover {
    background-color:var(--navbtm__link-hov-bg) !important; 
    text-decoration: none;
    border-bottom: 3px solid var(--navbtm__link-hov-btm-bdr) !important; 
}

.navbtm__link--active  {
    color: #009578;
    background-color: #d6e3ef;
    border-bottom: 2px solid #0089FF;
}

.navbtm__icon {
    font-size: 20px;
}
.navbtm__icon:hover {
    font-size: 25px;
}

.navbtm__link--active .navbtm__icon  {
    color: #0089FF;
    font-size: 30px;
}




.myprof {
    border-bottom: 1px solid transparent;
    padding: 30px 24px 20px 24px;
    background-color: var(--profil-bg);
    color: var(--profil-clr);
    cursor: pointer;
}
.myprof:hover .profimg {
    border: solid 6px #ffffff;
} 
 
.profimg {
    height: 128px;
    width: 128px;
    flex-shrink: 0;
    min-width: 48px;
    border-radius: 50%;
    border: solid 5px #ffffff;
    background-color: rgb(242, 242, 242);
    object-fit: cover;
    margin-right: 10px;
    margin-left: 0px;
}

.myprof-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;

}
.myprof-name {
    padding-top:10px;
    font-size:15px;
}

.logoff-tmr {
    position: absolute;
    z-index: 99999;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #ff0000;
    font-size: 14px;
    padding: 2px 8px 2px 8px;
    border-radius: 10px;
    opacity: 0.6;
}
