header {
    padding-bottom: 72px;
}

body {
    margin: 0px;
    margin-top: 8px;
}

.panel {
    position: fixed;
    z-index: 1;
    color: white;
    display: flex;
    width: 100%;
    margin: -8px -8px 0 0px;
    height: 67px;
    padding: 7px 0px 7px 0px;
    background-color: rgb(41, 41, 41);
    justify-content: center;
}

.shop {
    margin-right: auto;
    margin-left: auto;
}

.menu-container {
    align-self: center;
    width: 70px;
}

.burger {
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    margin: 20px;
}

.line {
    width: 100%;
    height: 3px;
    background-color: whitesmoke;
}

.logo {
    align-self: end;
    margin: -65px 0 0 0;
    justify-content: center;
    display: flex;
    float: right;
    vertical-align:middle;
    width: 60px;
    height: 60px;
    border: solid;
    border-color: royalblue;
    border-radius: 50%;
}

.menu {
    height: 91vh;
    display: block;
    position: fixed;
    top: 80px;
    width: 200px;
    background-color: rgb(32, 32, 32);
    border: 1px solid rgb(32, 32, 32);
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.2);*/
    left: -300px;
    transition: left 0.3s ease;
    
}

.menu.active {
        left: 0;
    }

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
}

.menu li a {
    text-decoration: none;
    color: whitesmoke;
}

.menu li a i {
    margin-right: 10px;
}

.dslogin {
    display: flex;
    text-align: center;
    color: white;
    text-decoration: none;
}

.dslogin img {
    display: flex;
    padding-right: 10px;
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

.cabinet i {
    margin-right: 10px;
}

.logout {
    cursor: pointer;
    display: flex;
    padding: 7px 1% 5px 1%;
    text-align: center;
    color: white;
    text-decoration: none;
}

.logout i {
    margin-right: 10px;
}

.logoutmenu {
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
    display: block;
    border-radius: 0.4em;
    background-color: #0300a3;
    position: absolute;
    top: 185px;
    left: 170px;
    width: 250px;
    height: 80px;
    justify-content: center;
}

.logoutmenu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    width: 0px;
    height: 0px;
    border: 20px solid transparent;
    border-right-color: #0300a3;
    border-left: 0;
    margin-left: -20px;
    margin-top: -20px;
}

.logoutmenu h2 {
    position: relative;
    top: -7px;
    left: 70px;
    font-size: 20px;
}

.confirm {
    position: relative;
    cursor: pointer;
    width: 100px;
    margin-top: 0px;
    font-size: 130%;
    background-color: greenyellow;
    border: none;
    left: 15px;
    top: -12px;
    float:left;
}

.deny {
    position: relative;
    cursor: pointer;
    margin-top: 0px;
    width: 100px;
    font-size: 130%;
    background-color: red;
    border: none;
    right: 15px;
    top: -12px;
    float:right;
}



.logoutmenu.active {
    transition: 0.25s;
    opacity: 1;
    visibility: visible;
    top: 185px;
    left: 220px;
    border-radius: 0.4em;
    background-color: #0300a3;
    position: absolute;
    width: 250px;
    height: 80px;
}

body footer {
    height: 80px;
    font-family: sans-serif;
    font-size: 16px;
    background-color: #333333;
    color: darkgray;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}