/* tag-styles.css */

.template-block__container {
  text-align: left;
}

.template-block__body {
  font-size: 16px;
  line-height: 1.6;
}

.template-block__body p {
  margin-bottom: 1em;
}
.template-block__body {
    font-size: .875rem;
    line-height: 160%;
    letter-spacing: .02em;
    color: #000;
}

@supports (margin-top: clamp(0.625rem,0.0362149533rem + 2.6168224299vw,2.375rem)) {
    .template-block__body {
        margin-top:clamp(.625rem,.0362149533rem + 2.6168224299vw,2.375rem)
    }
}

@supports not (margin-top: clamp(0.625rem,0.0362149533rem + 2.6168224299vw,2.375rem)) {
    .template-block__body {
        margin-top:calc(.625rem + 1.75*(100vw - 22.5rem)/ 66.875)
    }
}

@supports (margin-bottom: clamp(1.3125rem,-0.3183411215rem + 2.8037383178vw,2.1875rem)) {
    .template-block__body p {
        margin-bottom:clamp(1.3125rem,-0.318341rem + 3.803738vw,2.1875rem);
    }
}

@supports not (margin-bottom: clamp(1.3125rem,-0.3183411215rem + 2.8037383178vw,2.1875rem)) {
    .template-block__body p {
        margin-bottom:calc(1.3125rem + 1.875*(100vw - 22.5rem)/ 66.875)
    }
}

.template-block__body h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.template-block__body h1 {
  font-size: 2.5em;
}

.template-block__body h2 {
  font-size: 2em;
}

.template-block__body h3 {
  font-size: 1.5em;
}

.template-block__body h4 {
  font-size: 1.2em;
}

.template-block__body h5 {
  font-size: 1em;
}

.template-block__body h6 {
  font-size: 0.8em;
}

.template-block__body a {
  color: #50a71f;
  text-decoration: none;
}

.template-block__body a:hover {
  text-decoration: underline;
}

.template-block__body ul, ol {
  margin-bottom: 1em;
  padding-left: 20px;
}

.template-block__body li {
  margin-bottom: 0.5em;
}

.template-block__body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.template-block__body blockquote {
  margin: 0 0 1em 0;
  padding: 1em;
  border-left: 5px solid #ccc;
  font-style: italic;
  background-color: #f9f9f9;
}

.template-block__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}

.template-block__body th, td {
  padding: 0.5em;
  border: 1px solid #ccc;
  text-align: left;
}

.template-block__body th {
  font-weight: bold;
  background-color: #f0f0f0;
}

.template-block__body input[type="text"],
.template-block__body input[type="email"],
.template-block__body textarea {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.template-block__body button,
.template-block__body input[type="submit"] {
  padding: 0.5em 1em;
  margin-top: 1rem;
  background-color: #50a71f;  
  border-radius: 0.75rem;
  color: white;
  border: none;
  cursor: pointer;
}

.template-block__body button:hover,
.template-block__body input[type="submit"]:hover {
  background-color: #50a71f;
  color: white;
}

.template-block__body hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}

.template-block__body .my-block p {
    font-size: 18px;
    color: darkgreen;
}

.template-block__body .select__title{
    padding: 0;
}

.template-block__body .select__body{
  max-width: fit-content;
}