/*====================================================

=====================================================*/


/* 
:root {
  --color-bg-gray: #ededed;
  --color-white: #fff;
  --color-dummy-gray: #c5c5c5;
  --color-button: #555;
  --color-text: #000;
  --color-primary: #3c3c41;
  --color-red: #ff0009;
  --color-dark-red: #c8373c;
} */


.c-button-auto {
  align-items: center;
  background-color: #555;
  border-radius: 30px;
  color: #fff;
  display: inline-flex;
  font-size: 1.4rem;
  justify-content: center;
  min-height: 50px;
  padding: 4px 44px 3px;
  position: relative;
  text-align: center;
}





.c-button-auto:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  bottom: 0;
  content: "";
  height: 10px;
  left: auto;
  margin: auto;
  position: absolute;
  right: 15px;
  top: 0;
  transform: rotate(-45deg);
  transition: all .2s;
  width: 10px;
}




@media (min-width: 640px) {
  .c-button-auto {
    padding: 14px 44px 13px;
  }
}