:root {
	--bg-block: #FFF;
	--link-static: #e00fbe;
  --header: #434447;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

#interface {background: #21182c; overflow:scroll; height: 100%;}

#wrapper {position: relative; margin: 15px auto; max-width: 1200px;}
#left {position: fixed; left: 350px; top: 15px; bottom: 0; width: 280px;}
#left .item {display: grid; grid-template-columns: 40px auto;}
#left .item .icon {font-size: 24px; color: var(--link-static); padding: 8px;}
#left .item .text {font-size: 16px; line-height: 18px; padding: 11px; color: var(--link-static);}
#left .item:hover {background: #20252F;}
#left .item:hover .icon,
#left .item:hover .text {color: #FFF;}

#right { position: fixed;  right: 350px;  top: 0;  bottom: 0;  width: 280px;}
#right .search {  display: grid;  grid-template-columns: 40px auto; width: 100%;  max-width: 280px; padding: 10px 15px; margin: 15px auto 0;}
#right .search .icon {  font-size: 24px;  padding: 8px; display: flex;  align-items: center;  justify-content: center;  color: #90959F;}
#right .search input {  background: #90959F;  border-radius: 30px;  padding: 11px 15px; border: none;  outline: none; width: 100%;  box-sizing: border-box; color: #FFF;  font-size: 14px;}
#right .search input::placeholder {  color: rgba(255, 255, 255, 0.7);}
#right .search:focus-within {  background-color: #444;  border-radius: 30px;}
#right .search input:focus {  background: #444;  box-shadow: 0 0 0 2px #e00fbe;}
#right .search .input.item {  display: flex;  align-items: center; position: relative;}
#right .search .placeholder {position: absolute; left: 15px; color: rgba(255, 255, 255, 0.7); pointer-events: none; font-size: 14px;}
#right .search input:focus + .placeholder,
#right .search input:not(:placeholder-shown) + .placeholder {display: none;}

#middle {position: absolute; top: 0; left: 295px; right: 295px;}
#middle .header {position: fixed; top: 15px; left: 50%; transform: translateX(-50%); width: 200px; height: 52px; background: var(--header); border-radius: 30px; opacity: .8; box-shadow: 3px 2px 5px #00000F; display: flex; align-items: center;justify-content: center;}
#middle .header .logo {margin-left: 12%; display: flex; align-items: center; justify-content: center; height: 100%;}
#middle .content {padding-top: 52px;}
#middle .content .wrap {padding: 15px 0px;}
#middle .content .wrap .block {margin: 15px auto; background: var(--bg-block); border-radius: 3px;}
#middle .content .wrap .block:first-child {margin-top: 0px;}
#middle .content .wrap .block-1 {height: 450px;}
#middle .content .wrap .block-2 {height: 720px;}
#middle .footer {background: var(--bg-block); padding: 30px; text-align: center; border-radius: 3px;}


/* GOOGLE ICONS FONT */
.icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}