.main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
  gap: 10px;
  padding: 7px 7px 7px 24px !important;
  background-color: #CE3F00;
  color: #ffffff;
	    border-radius: 44px;
	    font-family: "Montserrat", Sans-serif;
	font-weight : 700;
}

.main-button svg path {
  stroke: #ffffff;
}

.main-button--light {
  background-color: #ffffff;
  color: #CE3F00;

}

.main-button--light svg path {
  stroke: #CE3F00;
}

.main-button--light:hover {
  background-color: #f4f4f4;
}

.main-button--light:hover svg path {
  stroke: #B33600;
}

.button-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.button-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.main-button:hover .button-icon {
  transform: translateX(-5px);
}

.main-button[class*="full_width"] .button-content {
  justify-content: space-between;
  width: 100%;
}

.main-button[class*="full_width"] {
  width: 100%;
  justify-content: space-between;
}
