﻿@media screen and (max-width: 700px)
{

  .MenuForMobile {
    display: block !important;
  }
  .MenuForPC {
    display: none !important;
  }
  .Menu {
    display: none;
    min-width: 200px !important;
  }
  .MenuExpanded {
    display: block;
    transition: width 0.5s ease;
    min-width: 200px !important;
  }
  .MenuExpanded .UserPhoto {
    height: 60px;
  }
  .Menu .ChildMenu {
    /*visibility: hidden;*/
    display: none;
    padding-bottom: 10px;
    background-color: #3f81f0;
    color: white;
    margin-left: 17px;
    text-align: left;
    border-left: 1px dotted white;
    width: 90% !important;
    z-index: 520;
  }
  .Menu .ChildMenu a {
    padding: 0px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .Menu .ChildMenu li:hover {
    background-color: #3472df;
    color: white;
  }
  .Menu .ChildMenu div:hover > a {
    background-color: #3472df;
    color: white;
  }
  .Menu ul {
    padding: 0;
    margin: auto;
    list-style: none;
    list-style-type: none;
  }
  .Menu ul li:hover {
    /*position: relative;
    z-index: 510;*/
  }
  .Menu li {
    cursor: pointer;
    color: white;
  }
  .Menu li.active {
    border-left: 3px solid white;
    background-color: #3472df;
    color: white;
  }
  .Menu li a {
    color: white;
    text-decoration: none;
    padding: 20px;
  }
  .Menu .MainParent {
    padding-left: 10px;
  }
  .Menu .MainParent:hover {
    border-left: 4px solid white;
    background-color: #3472df;
    color: white;
  }
  .Menu .MainParent:hover > a,
  .Menu .MainParent a:hover {
    color: white;
  }
  .Menu #MenuText {
    display: none;
  }
  .Menu .LogoWhite {
    transition: all 0.5s ease;
    content: url('../Images/Logos/DEWhite.png');
    height: 30px;
    text-align: center;
  }
  .Menu .UserProfile {
    display: none;
  }
  .MenuExpanded .ChildMenu {
    display: none;
    padding-bottom: 10px;
    background-color: #3f81f0;
    color: white;
    margin-left: 17px;
    text-align: left;
    border-left: 1px dotted white;
    width: 90% !important;
  }
  .MenuExpanded .LogoWhite {
    content: url('../Images/Logos/DEWhiteLogoWithText.png');
    height: 30px;
  }
  .MenuExpanded #MenuText {
    display: block;
  }
  .MenuExpanded .UserProfile {
    display: block;
    text-align: center;
  }
}