:root{
    --header-height: 60px;
    --icon-bar-width: 80px;
    --first-color: #6495ED;
    --first-color-light: #F7F6FB;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

body{
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
    background: var(--white-color)
}

a{
    text-decoration: none
}
.header{
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: Ivory;
    z-index: var(--z-fixed);
    transition: .5s;
    border-bottom-style: solid;
    border-color: Silver
}

.header-box1 {
    top:0;
    left:0;
    width: var(--icon-bar-width);
    align-items: center;
}

.header img{
    height: 45px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.header-box2 {
    width: calc(70% - var(--icon-bar-width));
}
.header-box3 {
    top:0;
    right: 0;
    width:30%;
}
.header-box23 {
    width: calc(100% - var(--icon-bar-width));
}


.icon-bar {
  height:100%;
  background-color: #555;
  position: fixed;
  top: var(--header-height);
  left:0;
  width: var(--icon-bar-width);
  z-index: var(--z-fixed)
}

.icon-bar .icon {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 32px;
}

.icon-bar .icon:hover {
  background-color: dimgray;
  width:20px;
}

.icon-bar .icon-m {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: silver;
  font-size: 16px;
  width:var(--icon-bar-width);
}

.icon-bar .icon-m:hover {
  background-color: dimgray;
  width:var(--icon-bar-width);
}

.icon-bar .icon:active, .active {
  background-color: darkgreen;
}

.icon-bar .icon img {
  width:30px;
}


form{
    padding: 10px;
    margin: 10px
}

.clickable{
    cursor:pointer
}

.clickable:hover{
    background:silver
}

ul.errorlist li{
    color:red;
}


@media screen and (min-width: 768px){
    body{
        padding-left: calc(var(--icon-bar-width) + 2rem)
    }
    .icon-bar {
        height: calc(100% - var(--header-height))
    }

    .icon-bar .icon:hover {
          background-color: dimgray;
          width: var(--icon-bar-width);
        }

}

@media only screen and (max-width: 768px) {
    body{
            padding-left: 30px
        }
    .icon-bar {
            width: 30px;
            height: calc(100% - var(--header-height))
        }
    .icon-bar .icon {
            padding: 8px;
            font-size: 16px;
        }

    .icon-bar .icon:hover {
          background-color: dimgray;
          width:30px;
        }

    .status {
          height:0px;
        }
}

