/* css reset */
* {box-sizing: border-box;}
*:before, *:after {box-sizing: border-box;}
* {margin: 0; padding: 0;}
ul, ol { list-style: none; }
a {color: inherit; text-decoration: none;}
img {max-width: 100%; max-height: 100%;}
/* style */
body {background: #EEE;}
.globalHeader {
  margin: 20px;
}
@media (min-width: 500px) {
  .globalHeader {
    margin: 60px 0 100px;
  }
}
.searchForm {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 500px) {
  .searchForm {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    
  }
}
.searchForm > input {
  width: 100%;
  margin-right: 10px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #DDD;
  border-radius: 4px;
}
.searchForm > button {
  white-space: nowrap;
  padding: 0 28px;
  border: none;
  border-radius: 4px;
  background: #0282B9;
  color: white;
  font-size: 16px;
  cursor: pointer;
  
}
.globalMain {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.siteList {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 500px){
  .siteList{
    margin-left: 0;
    margin-right: -25px;
    justify-content: flex-start;
  }
}
.siteList > li {
  margin-bottom: 10px;
}
@media(min-width: 500px){
  .siteList > li {
    margin-right: 25px;
  }
}
.siteList .site {
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  border: 1px solid #DDD;
  border-radius: 20px;
  padding: 20px 0;
  position: relative;
  cursor: pointer;


}
@media(min-width: 500px){
  .siteList .site {
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: white;
    border: 1px solid #DDD;
    border-radius: 20px;
    padding: 20px 0;
    margin-bottom: 25px;
    position: relative;
    cursor: pointer;
    box-shadow: 18px 18px 30px rgba(0,0,0,0.2),-18px -18px 30px rgba(255,255,255,1);
    transition: all 0.2s ease-out;
  }
  
}
@media (min-width: 500px){
  .siteList .site:hover{
    box-shadow: 0 0 0 rgba(0,0,0,0.2),0 0 0 rgba(255,255,255,0.8),inset 18px 18px 30px rgba(0,0,0,0.1),inset -18px -18px 30px rgba(255,255,255,1);
  }
}

.siteList .site > .logo {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  text-transform: uppercase;
}

@media(min-width: 500px){
  .siteList .site:hover > .logo{
    width: 58px;
    font-size: 58px;
    transition: all 0.2s ease-out;

  }
}
.siteList .site > .link {
  font-size: 14px;
  margin-top: 4px;
}
@media(min-width:500px){
  .siteList .site:hover > .link {
    font-size: 12px;
    transition: all 0.2s ease-out;
  }
}

.siteList .site > .close {
  position: absolute;
  right: 10px;
  top: 5px;
  display: block;
  cursor: default;
}
@media(min-width: 500px){
  .siteList .site > .close {
    display: none;
  }
}

.siteList .site:hover > .close{
  display: block;
}


.siteList .addButton {
  border: 1px solid #DDD;
  background: white;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
  border-radius: 20px;
}
@media(min-width: 500px){
  .siteList .addButton {
    box-shadow: 18px 18px 30px rgba(0,0,0,0.2),-18px -18px 30px rgba(255,255,255,1);
    transition: all 0.2s ease-out;
  }
}
@media(min-width: 500px){
  .siteList .addButton:hover {
    box-shadow: 0 0 0 rgba(0,0,0,0.2),0 0 0 rgba(255,255,255,0.8),inset 18px 18px 30px rgba(0,0,0,0.1),inset -18px -18px 30px rgba(255,255,255,1);
  }
}

.siteList .addButton .icon {
  width: 64px;
  height: 64px;
}

.siteList .addButton .text {
  font-size: 14px;
  margin-top: 4px;
}
.siteList .addButton:hover > .text {
  font-size: 12px;
  margin-top: 4px;
  transition: all 0.2s ease-out;

}

.siteList .addButton .icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=style.91744cc6.css.map */