.cardButton {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cardButton-img {
  width: 100%;
  min-height: 260px;
}
.cardButton-text {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cardButton-text__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  margin: 0;
}
.cardButton-text__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-gray);
  margin: 5px 0 0 0;
}
svg {
  max-width: unset !important;
}
.cardButton-text__btn {
  width: fit-content;
  border: 1px solid transparent;
  background: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  /*text-align: right;*/
text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 20px;
  margin-top: 10px;
  color: var(--text-white);
  border-radius: 10px;
  background: var(--blue500);
  overflow: hidden;
}
.cardButton-text__btn:hover {
  background: var(--white100);
  color: var(--text-blue);
  border: 1px solid var(--blue500);
}
.cardButton-text__btn:hover svg {
  fill: var(--blue500);
}
.cardButton-text__btn:active {
  background: var(--blue200);
}
.cardButton-text__btn:disabled {
  background: var(--gray200);
}
.cardButton-text__btn:disabled p {
  color: var(--gray550);
}
.cardButton-text__btn:disabled svg {
  fill: var(--gray550);
}
.cardButton-text__btn p,
.cardButton-text__btn svg:last-child {
  transition: all 0.25s ease-in;
  transform: translateX(0px);
}
.cardButton-text__btn:hover p,
.cardButton-text__btn:hover svg:last-child {
  transition: all 0.25s ease-in;
  transform: translateX(35px);
}
.cardButton-text__btn svg:first-child {
  opacity: 0;
  position: absolute;
  transform: translateX(-35px);
}
.cardButton-text__btn:hover svg:first-child {
  opacity: 1;
  transform: translateX(-10px);
  transition: all 0.25s ease-in;
}
.cardButton-text__btn:hover svg:last-child {
  opacity: 0;
}
.cardButton-text__btn:disabled {
  background: var(--gray200);
  cursor: not-allowed;
}
.cardButton-text__btn:disabled p,
.cardButton-text__btn:disabled svg {
  color: var(--gray550);
  fill: var(--gray550);
  transition: none;
}
.cardButton-text__btn:disabled:hover {
  background: var(--gray200);
  color: var(--gray550);
  border: 1px solid transparent;
}
.cardButton-text__btn:disabled:hover svg {
  fill: var(--gray550);
}
.cardButton-text__btn:disabled svg:first-child {
  display: none;
}
.cardButton-text__btn:disabled svg:last-child,
.cardButton-text__btn:disabled p {
  opacity: 1;
  transform: translateX(0);
}
.noBackground_Button {
  border: 0 !important;
  background-color: transparent !important;
  outline: none !important;
  color: var(--text-blue);
}
.noBackground_Button:active {
  color: var(--blue700);
}
.noBackground_Button:active svg {
  fill: var(--blue700) !important;
}
.button-text-style {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
}
.cardButton-text__btn:hover svg {
  fill: var(--blue500);
}
.cardButton-text__btn:hover .button-text-style__blue {
  color: var(--text-blue) !important;
}
.cardButton-text__btn:hover .button-text-style__gray {
  color: var(--gray550);
}


/* не активная кнопка */

.arrow-gray-background {
	fill: var(--text-gray);
}

.gray-background-button {
	background-color: var(--text-gray);
}

/* При белом фоне */

.arrow-white-background {
	fill: var(--white100) !important;
}

.cardButton-text__btn:hover .arrow-white-background {
	fill: var(--blue500) !important;
}
.white-background-button {
	background-color: var(--blue500) !important;
}
.white-background-button:hover {
	background-color: var(--white100) !important;
}

.white-color-button {
	color: var(--text-white) !important;
}

.white-color-button:hover {
	color: var(--text-blue) !important;
}

/* При голубом фоне */

.light_blue-background-button {
	background-color: var(--blue500)!important;
}

.light_blue-background-button:hover {
	background-color: var(--white100)!important;
}
.light_blue-color-button {
	color: var(--text-white) !important;
}
light_blue__text_black-color-button {
	color: var(--text) !important;
}

.light_blue-color-button:hover {
	color: var(--text-blue) !important;
}

/* При синем фоне */

.arrow-blue-background, .arrow-blue-background:hover {
	fill: var(--blue500) !important;
}

.blue-background-button {
	background-color: var(--white100) !important;
	border: 1px solid var(--blue500);
}

.blue-background-button:hover {
	background-color: #D9E8FF !important;
}

.blue-color-button {
	color: var(--text-blue) !important;
}
