@use './mixins';
.gm-label {
	display: block;
	font-weight: 500;
  font-size: 14px;
  line-height: 20px;
	color: var(--label-font-color);
	padding-bottom: 10px;
	margin-top: var(--label-m-t, 16px);

  @include mixins.tablet {
    font-size: 15px;
  }

	&--inline {
		display: inline;
		padding-bottom: 0;
	}

	&--normal {
		font-weight: 400;
	}

	&--small {
		font-size: 14px;
		line-height: 17px;
	}

	&--light {
		color: var(--label-font-color--light);
	}

  &.gm-label-no-margin {
    --label-m-t: 0;
  }
}
