/* loading - icon */
section.loading-icon{
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
}
section.loading-icon .loading-icon-wrap{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.loading-icon .switch-icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.loading-icon .switch-icon .img-bx{
  position: relative;
}
section.loading-icon .switch-icon .img-bx img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.loading-icon .switch-icon p{
  text-align: center;
  line-height: 1.5;
  color: #777;
}

@media screen and (min-width: 1160px) {
  section.loading-icon{
    padding: 150px 0 0;
  }
  section.loading-icon .switch-icon{
    row-gap: 30px;
  }
  section.loading-icon .switch-icon .img-bx{
    width: 100px;
    height: 100px;
  }
  section.loading-icon .switch-icon p{
    font-size: 20px;
  }
}

@media screen and (max-width: 1159px) {
  section.loading-icon{
    padding: 158px 0 70px;
  }
  section.loading-icon .switch-icon{
    row-gap: 20px;
  }
  section.loading-icon .switch-icon .img-bx{
    width: 80px;
    height: 80px;
  }
  section.loading-icon .switch-icon p{
    font-size: 14px;
  }
}
