.btn-mar {
  margin: 16px 0;
}

.flex-right {
  display: flex;
  justify-content: end;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 12px 24px;
  font-size: 14px;
  gap: .4rem;
  color: #fff;
  background-color: var(--color-main);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  z-index: 0;
}

.btn-outline,.btn-default {
  background-color: var(--color-white);
  color: var(--color-main);
  border: 1px solid;
}

.btn>.icons {
  font-size: 16pt;
  font-weight: 300;
  margin-left: -15px;
}

.btn:hover {
  /* background-color: #000000; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:active:after {
  width: 200%;
  height: 200%;
  transition: width 0.2s ease, height 0.2s ease;
}

.btn-center {
  width: 100%;
  align-items: center;
  justify-content: center;
}
