body {
}

#mainblock {
 border: 0;
 margin: 0;
 padding: 0;
}

#panel {
 background-color: black;
 color: white;
 max-height: 95%;
}
#sortpanel {
 background-color: white;
 color: black;
 width:80%;
 height:60%;
 position: absolute;
 top: 10%;
 left: 10%;
 z-index:10;
 padding: 15px;
}
#sortselect {
  width: 200px;
}
#editpanel {
 background-color: white;
 color: black;
 width:80%;
 height:60%;
 position: absolute;
 top: 10%;
 left: 10%;
 z-index:11;
 padding: 15px;
}
#editdesc {
  width: 70%;
  height: 200px;
}

#centerblock {
  display:flex;
  width:100%;
  height: 30em;
}
#storeblock {
  display:flex;
  flex-grow:4;
  flex-direction: column;
  max-width: 61.8%;
  align-items: center;
  align-content: center;
  justify-content: center;
}

#operationalpipelinewrap {
  display:flex;
  flex-direction: column;
  justify-content: center;
}
#corestoreswrap {
  display:flex;
  background-color: #EBEBEB;
  flex-direction: column;
  justify-content: center;
  margin: 5px;
  padding: 5px;
  color: black;
}
#supportingstoreswrap {
  display:flex;
  background-color: #EBEBEB;
  flex-direction: column;
  justify-content: center;
  margin: 5px;
  padding: 5px;
  color: black;
}
#supportingprocesseswrap {
  display:flex;
  width: 30%;
  flex-grow:1;
  flex-direction: column;
  justify-content: center;
}
#supportingprocesses {
  height: 30em;
}
#nondiffprocesses {
  height: 30em;
}
#nondiffprocesseswrap {
  display:flex;
  width: 30%;
  flex-grow:1;
  flex-direction: column;
  justify-content: center;
}
#interfaceswrap {
  display:flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.horizontalcollection {
  display: flex;
  flex-direction:row;
  flex-wrap: wrap;
  justify-content: center;
}

.verticalcollection {
  display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  
}

.rot90 {
  transform: rotate(90deg);
}
.rot270 {
  transform: rotate(270deg);
}

.label {
  text-align: center;
  font-weight: bold;
  font-size: 1.5vw;
}

.rcorners {
  border-radius: 25px;
}

.element {
  border: 1px solid white;
  background-color: gray;
  height: 60px;
  width: 80px;
  min-width: 80px;
  text-align: center;
  /* line-height: 60px; */
  margin: 5px;
}

.process {
}

.store {
}

.pipelineelement {
  height: 60px
  width: 80px;
  margin: 5px 25px 5px 0;
}

.pipelineinterior {
  background-color: gray;
  height: 60px;
  width: 80px;
  min-width: 80px;
  text-align: center;
  /* line-height: 60px; */
  position: relative;
}

  .pipelineinterior:before {
            content: "";
            position: absolute;
            top: 0;
            left: -20px;
            border-top: 30px solid gray;
            border-bottom: 30px solid gray;
            border-left: 20px solid transparent;
  }
  .pipelineinterior:after {

            content:"";
            position: absolute;
            left: 80px;
          	top: 0;
          	border-top: 30px solid transparent;
          	border-bottom: 30px solid transparent;
          	border-left: 20px solid gray;

  }

.storeelement {
  height: 60px;
  width: 80px;
  min-width: 80px;
  margin: 5px 5px 15px 5px;
}

.storeinterior {
  text-align: center;
  background-color: gray;
  position: relative;
  top: -10px;
  width: 80px;
  height: 50px;
  z-index: 1;
}

.storetext {
  position: relative;
  top: 10px;
  z-index: 3;
}

.storetop {
    height: 20px;
    width: 80px;
    top: 0;
    position: relative;
    background-color: a8a8a8;
    border-radius: 80px / 20px;
    z-index: 2;
}

.storebot {
    position: relative;
    height: 20px;
    width: 80px;
    z-index: 0;
    border-radius: 80px / 20px;
    top: -20px;
    background-color: gray;
}
