#sceneItMenu {
  display: block;
  text-align: center;
}

#sceneitMenu img {
  display: inline-block;
}

.topSpacer {
   display: block;
   height: 20px;
}

.siCatList {
   display: none;
   background-color: transparent;
   border: 1px solid black;
   width: 515px;
   max-width: 100%;
   margin-left: auto;
   margin-right: auto;
}

.siCatList .loadHolder {
   display: block;
   height: 115px;
}

.catImg {
   display: block;
   margin-left: auto;
   margin-right: auto;
   max-width: 100%;
   margin-top: 20px;
   border-left: 1px solid black;
   border-right: 1px solid black;
   cursor: pointer;
}

.loader {
  border: 16px solid #fefafa;
  border-radius: 50%;
  border-top: 16px solid lightblue;
  border-bottom: 16px solid lightblue;
  width: 75px;
  height: 75px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin-left: auto;
  margin-right: auto;
}

.sceneItList {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
}

.sceneItListRowWrap {
    border-style: solid;
    border-color: black;
    border-width: 1px 0 0 0;
}

.sceneItListRowWrap:first-child {
    border-width: 0;
}

.sceneItListRow {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sceneItListRow:hover {
    background-color: yellow;
}

.sceneItListRow img {
    flex-grow: 0;
    display: inline-flex;
    max-width: 40%;
    border-right: 1px solid black;
}

.sceneItListRow span {
    text-align: left;
    margin-left: 10px;
    flex: 1;
    font-size: 24px;
}

.blackLiknk {
    color: black;
}

.blackLiknk:hover {
    color: black;
}

.blackLiknk:visited {
    color: black;
}

.tempMinHeight {
    min-height: 115px;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 414px) {
   .siCatList {   
      border-width: 0 0 1px;
   }

   .sceneItListRow span {
       font-size: 18px;
   }
 
   .catImg {
      border: none;
   }
}