.cat_list{
  text-decoration: none;
  text-align: left;  
  padding-left: 10px;
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 2rem;
    
    padding: 0 1rem;
    justify-items: center;
    align-items: center;
}
.cat_items{
  border: 1px solid #3e88fe;
  border-radius: 5px;
  padding: 5px;
}
.cat_list a{
  text-decoration: none;
  color:#000000;  
  
}
.cat_list a:hover{
  background-color: #3e88fe;
  color:#ffffff;    
  
}



/*button link*/

.button {

  display: grid;
  align-items: left;
  padding: 10px 15px;
  position: relative;
  cursor: pointer;
  /* button */
  /* bg button */
}
.button .link {
  font-family: "Rubik", sans-serif;
  background-color: transparent;
  font-size: auto;
  letter-spacing: 1px;
  color: #4c6082;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 0;
  padding-left: 5px;
  text-align:left;
  left: 0;
  line-height: auto;
  overflow: hidden;
  /*line*/
  /*arrow*/
}
.button .link:before {
  content: "";
  background-color: #f38181;
  width: 3px;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.button .link:after {
  content: "";
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  background-color: transparent;
  position: absolute;
  border: solid 3px #f38181;
  border-left: 0;
  border-bottom: 0;
  top: calc(50% - 9px);
  border-radius: 2px;
  transform: translateX(-42px) rotate(45deg);
  transition: all 0.3s 0.2s ease-in-out;
}
.button:before {
  content: "";
  background-color: white;
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0px;
  border-radius: 3px;
  transition: all 0.4s 0.3s ease-in-out;
}
.button:hover:before {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0px;
}
.button:hover .link {
  padding-left: 50px;
}
.button:hover .link:before {
  left: 17px;
  transform: rotate(90deg);
}
.button:hover .link:after {
  transform: translate(-33px) rotate(45deg);
}
/*button link clsoe*/







a.left
{
    position: relative;
}

a.left:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

a.left:hover:before {
  visibility: visible;
  width: 100%;
}



a.right
{
    position: relative;
}

a.right:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background-color: #FFF;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
a.right:hover:before {
  visibility: visible;
  width: 100%;
}


a.middle
{
    position: relative;
}

a.middle:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

a.middle:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.main_root{
  top:20px;
  position: relative;
}

/*loader animation*/

/*<div class="ripple-loader"><div></div><div></div></div>*/

.ripple-loader {
  position: relative;
  width: 64px;
  height: 64px;
}

.ripple-loader div {
  position: absolute;
  border: 4px solid #f70303;
  border-radius: 50%;
  animation: ripple-loader 1s ease-out infinite;
}

.ripple-loader div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes ripple-loader {
  0% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    opacity: 0;
  }
}
/*Loader animation Close*/  

/*bouncing-loader animation*/
/*<div class="bouncing-loader"><div></div><div></div><div></div></div><!-- bouncing-loader-->*/


@keyframes bouncing-loader {
  to {
    opacity: 0.1;
    transform: translate3d(0, -16px, 0);
  }
}

.bouncing-loader {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.bouncing-loader > div {
  
  width: 16px;
  height: 16px;
  margin: 3rem 0.2rem;
  background: #f30505;
  border-radius: 50%;
  animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
  animation-delay: 0.2s;
}

.bouncing-loader > div:nth-child(3) {
  animation-delay: 0.4s;
}
/*bancing animation close */







