@charset "UTF-8";

#categorylist{
  max-width: 800px;
  margin: 0 auto;
}
#categorylist ul{
  border-top: 1px solid #dfdfdf;
}
#categorylist>ul{
  border: none;
}
#categorylist>ul>.hasChildren--click{
  margin-bottom: 30px;
}
#categorylist>ul>.hasChildren--click>a{
  font-family: 'Lato';
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #1b1b1b;
  background: #fff;
  border-bottom: 1px solid #153083;
  display: flex;
  align-items: center;
  padding-left: 0;
}
#categorylist>ul>.hasChildren--click>a:hover{
  background: #fff;
}
#categorylist>ul>.hasChildren--click>a::before{
  content: none;
}
#categorylist>ul>.hasChildren--click>a::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #153083;
  border-right: 2px solid #153083;
  transform: rotate(135deg) translateY(-50%);
  background: none;
  transform-origin: top center;
  transition: 0.15s;
}
#categorylist>ul>.hasChildren--click>a::after{
  content: none;
}
#categorylist>ul>.hasChildren--click>a>span:nth-child(1){
  width: 45px;
  height: 45px;
  display: inline-block;
  margin-right: 5px;
}
#categorylist>ul>.hasChildren--click>a>span:nth-child(1) img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#categorylist>ul>.hasChildren--click>a>span:nth-child(2){
  flex: 0 0 calc(100% - 45px);
  max-width: calc(100% - 45px);
  letter-spacing: 0.3px;
}
#categorylist>ul>.hasChildren--click>ul{
  display: block;
}
#categorylist ul li a{
  display: block;
  position: relative;
  padding: 12px;
  padding-right: 25px;
  text-decoration: none;
}
#categorylist ul li a::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #1b1b1b;
  border-right: 2px solid #1b1b1b;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top center;
  transition: 0.15s;
}
#categorylist ul li a:hover:after{
  right: 12px;
}
#categorylist ul li a:hover{
  background: #f2f2f2;
}
#categorylist .hasChildren--click>ul{
  display: none;
  border-top: none;
  border-bottom: 1px solid #dfdfdf;
}
#categorylist .hasChildren--click>ul li{
  list-style: none;
  border-bottom: 1px solid #dfdfdf;
  background: #f2f2f2;
  padding: 0 0 0 12px;
}
#categorylist .hasChildren--click ul li:last-child{
  border-bottom: 0;
}
#categorylist .hasChildren--click>ul>.hasChildren--click{
  background: #fff;
  padding: 0;
}
#categorylist .hasChildren--click>ul>.hasChildren--click>a{
  display: flex;
  align-items: center;
}
#categorylist .hasChildren--click>ul>.hasChildren--click>ul{
  border-bottom: 0;
  border-top: 1px solid #dfdfdf;
}
#categorylist .hasChildren--click>a::before{
  content: "";
  display: block;
  position: absolute;
  transition: 0.15s;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: top center;
  width: 10px;
  height: 2px;
  border: 0;
  right: 13px;
  background: #1b1b1b;
}
#categorylist .hasChildren--click>a.open::before{
  opacity: 0;
  transform: translateY(-50%);
}
#categorylist .hasChildren--click>a::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform-origin: top center;
  transition: 0.15s;
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  border: 0;
  right: 13px;
  background: #1b1b1b;
}
#categorylist .hasChildren--click>a:hover::after{
  right: 13px;
}
#categorylist .hasChildren--click>ul>.hasChildren--click>ul li a::after{
  border-width: 1px;
}
#categorylist+section{
  margin-top: 80px;
}