/* ------------------------------------------------------------ *\
	main
\* ------------------------------------------------------------ */

.main {
    background-color: var(--body-background-color);
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------ *\
	btn

	Basic classes for all buttons throgh out all pages.
\* ------------------------------------------------------------ */

.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    border-radius: 0.4rem;
    background-color: var(--button-background-primary);
    border: 0;
    padding: 0 1.5rem;
    min-height: 4.6rem;
    line-height: 4.6rem;
    font-family: var(--button-text-font);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.006em;
    color: var(--button-text-color);
    position: relative;
}

.btn span,
.btn img {
    z-index: 2;
    position: relative;
}

@media (hover: hover) {
    .btn:hover:after {
        opacity: 0;
        visibility: hidden;
    }

    .btn:focus:before {
        opacity: 1;
    }
}

/*  btn blue  */

.btn--blue {
    color: var(--button-text-color);
    background: linear-gradient(
            180deg,
            var(--button-secondary-overlay-highlight) 0%,
            var(--button-secondary-overlay-midpoint) 42.71%,
            var(--button-secondary-overlay-shade) 100%
        ),
        var(--button-background-secondary);
}

.btn--blue:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        linear-gradient(
            180deg,
            var(--button-secondary-overlay-highlight) 0%,
            var(--button-secondary-overlay-midpoint) 42.71%,
            var(--button-secondary-overlay-shade) 100%
        ),
        var(--button-background-secondary);
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}

/* ------------------------------------------------------------ *\
	section dark
\* ------------------------------------------------------------ */

.section-dark-alt {
    padding: 1.5rem 0 1.3rem;
    background: var(--nav-background-secondary-color);
    color: var(--nav-text-color);
}

.section-dark-alt h2 {
    margin-left: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--nav-text-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .section-dark-alt h2 {
        font-size: 3.4rem;
        letter-spacing: -0.004rem;
    }
}

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
    margin-bottom: 0.8rem;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
}

.breadcrumbs ul li {
    position: relative;
}

.breadcrumbs ul li + li {
    margin-left: 0.2rem;
    padding-left: 0.9rem;
}

.breadcrumbs ul li + li:after {
    content: ">";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--nav-text-color);
    font-size: 1.4rem;
}

.breadcrumbs ul li {
    color: var(--nav-text-color);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.57;
}

.breadcrumbs ul li a {
    color: var(--anchor-text-color-white);
    text-decoration: none;
}

/* ------------------------------------------------------------ *\
	Section alt
\* ------------------------------------------------------------ */

.section-alt {
    background-color: var(--body-background-color);
    padding: 2.4rem 0;
}

.section-alt .section__head {
    padding: 1.8rem 0;
    background: var(--banner-background-color);
}

.section-alt .section__head h1 {
    font-size: 3.1rem;
    line-height: 1.2;
    letter-spacing: -0.004em;
    font-weight: 700;
    color: var(--banner-text-color);
    margin-bottom: 0;
}

.section-alt h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.4rem;
}

@media only screen and (max-width: 767px) {
    .section-alt {
        padding-bottom: 2.8rem;
    }

    .section-alt .section__head {
        padding: 1.7rem 0 1.6rem;
    }

    .section-alt .section__head h1 {
        font-size: 2.7rem;
    }

    .section-alt h2 {
        font-size: 2.2rem;
        color: var(--header-text-prominent);
        margin-bottom: 2.4rem;
    }
}

/*  section alt secondary  */

.section-alt--secondary {
    padding: 0 0 1.4rem;
    font-size: 1.6rem;
    line-height: 1.2;
}

.section-alt--secondary .section__body {
    padding: 1.8rem 0rem;
}

.section-alt--secondary .section__body-inner {
    padding: 0rem 1rem;
}

.section-alt--secondary h2 {
    margin-bottom: 2.2rem;
    color: var(--header-text-primary);
}

.section-alt--secondary h3 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.section-alt--secondary h4 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.section-alt--secondary p + h4 {
    margin-top: 2.2rem;
}

.section-alt--secondary address {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 2.3rem;
}

.section-alt--secondary em {
    font-style: italic;
    font-weight: 400;
    margin-left: -0.8rem;
    display: inline-block;
    max-width: 111.1rem;
    color: var(--body-text-color-emphasis);
    margin-top: 1.9rem;
}

.section-alt--secondary .section__entry {
    margin-bottom: 1.5rem;
    margin-top: -0.2rem;
}

.section-alt--secondary p:not(:last-child) {
    margin-bottom: 1.5rem;
}

@media only screen and (max-width: 767px) {
    .section-alt--secondary {
        padding: 0 0 1.4rem;
        font-size: 1.4rem;
    }

    .section-alt--secondary h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .section-alt--secondary h4 {
        font-size: 1.6rem;
    }

    .section-alt--secondary p + h4 {
        margin-top: 2rem;
    }

    .section-alt--secondary address {
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
    }

    .section-alt--secondary em {
        margin-top: 2.2rem;
    }

    .section-alt--secondary .section__body-inner {
        padding: 0rem 0.8rem;
    }

    .section-alt--secondary .section__entry {
        margin-bottom: 2.2rem;
    }

    .section-alt--secondary p:not(:last-child) {
        margin-bottom: 1.2rem;
    }
}

/* ------------------------------------------------------------ *\
section__aside
\* ------------------------------------------------------------ */

.section__aside {
}

.section__aside .success-message-container {
    padding: 24px 36px;
    text-align: center;
}

.section__aside .email-notice {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    border: solid 5px var(--callout-border-color-accent);
    border-radius: 5px;
}

.email-notice .email-notice__header {
    text-align: center;
}

.email-notice .email-notice__body {
    display: flex;
    gap: 36px;
}

.email-notice__body img {
    width: 70px;
    height: 100%;
}

/* ------------------------------------------------------------ *\
	link gray
\* ------------------------------------------------------------ */

.link-gray {
    font-weight: 700;
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

/* ------------------------------------------------------------ *\
	link blue
\* ------------------------------------------------------------ */
.link-blue {
    text-decoration: underline;
    color: var(--anchor-text-color-vibrant);
}

.link-blue:hover {
    text-decoration: none;
}

.form__cols {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__col--full {
    width: 100%;
}

@media (min-width: 768px) {
    .form__cols--half {
        flex-direction: row;
    }

    .form__cols--half .form__col {
        flex: 1;
    }

    .form__cols--quarter {
        flex-direction: row;
    }

    .form__cols--quarter .form__col {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .form__cols--quarter .form__col {
        width: 100%;
    }

    .form__row {
        margin-bottom: 1rem;
    }
}

/* ------------------------------------------------------------ *\
      Form contact help
  \* ------------------------------------------------------------ */

.form-contact-help {
    font-size: 1.6rem;
    line-height: 1.2;
}

.form-contact-help .form__head {
    padding: 1.3rem 0;
    margin-bottom: 0.7rem;
}

.form-contact-help .form__head h2 {
    margin-left: -0.8rem;
    margin-bottom: 1.3rem;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.form-contact-help .form__entry {
    letter-spacing: 0;
}

.form-contact-help .form__entry h3 {
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.form-contact-help .form__entry a {
    font-weight: 700;
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

.form-contact-help .form__row + .form__row {
    margin-top: 1.6rem;
}

.form-contact-help .form__row + .form__row--alt {
    margin-top: 1.6rem;
}

.form-contact-help label {
    color: var(--header-text-primary);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.1rem;
}

.form-contact-help .form__hint {
    font-size: 1.2rem;
    line-height: 1.2;
    font-style: italic;
    display: block;
    margin-top: 0.9rem;
}

.form-contact-help .form__hint--alt {
    margin-top: 0.1rem;
}

.form-contact-help .form__controls {
    width: 100%;
}

.form-contact-help .form__field {
    border: solid 0.1rem var(--input-border-color-subtle);
    border-radius: 0.4rem;
    font-size: 1.8rem;
    letter-spacing: -0.008em;
    line-height: 1.2;
    height: 4.6rem;
    width: 100%;
    padding: 0rem 1.6rem;
    background-color: var(--input-background-color-default);
    transition: all 0.3s;
    color: var(--input-text-color-default);
}

.form-contact-help .form__controls.has-error .form__field {
    border-color: var(--input-border-color-error);
    color: var(--input-text-color-error);
    background: var(--input-background-color-error);
    box-shadow: none;
}

.form-contact-help .form__error-message {
    color: var(--input-text-color-error);
    font-size: 1.4rem;
    line-height: 1.2;
    display: none;
    margin-top: 0.4rem;
}

.form-contact-help .form__controls.has-error .form__error-message {
    display: block;
}

.form-contact-help .form__field:focus {
    border: 1px solid var(--input-border-color-default);
    box-shadow:
        0px 0px 4px var(--input-boxshadow-color-highlight-active),
        0px 8px 8px var(--input-boxshadow-color-midpoint-active),
        inset 0px 0px 4px var(--input-boxshadow-color-fade-active);
}

.form-contact-help .form__field::-webkit-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field:-moz-placeholder {
    color: var(--input-text-color-placeholder);
    opacity: 1;
}

.form-contact-help .form__field::-moz-placeholder {
    color: var(--input-text-color-placeholder);
    opacity: 1;
}

.form-contact-help .form__field:-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field::-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field::placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field--alt {
    height: 4.9rem;
}

.form-contact-help .form__cols {
    display: flex;
    margin: 0rem -0.4rem;
}

.form-contact-help .form__col {
    flex: 1;
    padding: 0rem 0.4rem;
}

.form-contact-help .form__col--size1 {
    max-width: 31.2%;
    min-width: 35.4rem;
}

.form-contact-help .form__col--size2 {
    max-width: 9.9rem;
    flex: 0 0 9.9rem;
}

.form-contact-help .form__col--size3 {
    max-width: 12.1rem;
    flex: 0 0 12.1rem;
}

.form-contact-help .form__textarea {
    height: 17rem;
    padding: 1.6rem;
    resize: none;
}

.form-contact-help .form__actions {
    margin-top: 1.3rem;
}

.form-contact-help .form__actions .form__hint {
    margin-bottom: 0.7rem;
}

.form-contact-help .form__captcha {
    margin-bottom: 1.6rem;
}

.form-contact-help .form__btn {
    width: 31.1rem;
}

@media only screen and (max-width: 767px) {
    .form-contact-help .form__head {
        padding: 1.8rem 0;
        margin-bottom: 0.4rem;
    }

    .form-contact-help .form__head h2 {
        font-size: 2.2rem;
    }

    .form-contact-help .form__entry h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .form-contact-help .form__row + .form__row {
        margin-top: 2.5rem;
    }

    .form-contact-help .form__row + .form__row--alt {
        margin-top: 2.5rem;
    }

    .form-contact-help label {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .form-contact-help .form__field {
        font-size: 1.6rem;
        height: 4.9rem;
        padding: 0rem 1.5rem;
    }

    .form-contact-help .form__textarea {
        height: 10rem;
    }

    .form-contact-help .form__hint {
        font-size: 1.1rem;
        margin-top: 0.4rem;
    }

    .form-contact-help .form__col--size1 {
        min-width: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .form-contact-help .form__btn {
        width: 100%;
        max-width: 31.1rem;
    }
    .form-contact-help .form__cols {
        align-items: unset;
    }
}

@media only screen and (max-width: 389px) {
    .form-contact-help .form__col--size2 {
        max-width: 31.5%;
        flex: 0 0 31.5%;
    }

    .form-contact-help .form__col--size3 {
        max-width: 37%;
        flex: 0 0 37%;
    }
}

/* ------------------------------------------------------------ *\
	select help
\* ------------------------------------------------------------ */

.select-help {
    position: relative;
}

.select-help:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 0.6rem 0.75rem 0 0.75rem;
    border-color: var(--input-border-color-subtle) transparent transparent
        transparent;
    z-index: 1;
    pointer-events: none;
}

.select-help select {
    padding: 0rem 1.5rem;
    width: 100%;
    border: solid 0.1rem var(--input-border-color-subtle);
    border-radius: 0.4rem;
    font-size: 1.8rem;
    letter-spacing: -0.008em;
    line-height: 1.2;
    height: 4.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--input-background-color-default);
    color: var(--input-text-color-default);
}

.form__controls.has-error .select-help select {
    border-color: var(--input-border-color-error);
    color: var(--input-text-color-error);
    background: var(--input-background-color-error);
    box-shadow: none;
}

.select-help select::-ms-expand {
    display: none;
}

@media only screen and (max-width: 767px) {
    .select-help select {
        font-size: 1.6rem;
        height: 4.3rem;
    }

    .select-help:after {
        right: 1rem;
    }
}

/* ------------------------------------------------------------ *\
	Disclaimer
\* ------------------------------------------------------------ */

.disclaimer {
    background: var(--disclaimer-background-color);
    font-size: 1.2rem;
    line-height: 1.67;
    letter-spacing: -0.018em;
    padding: 2.4rem 0 2.3rem;
    color: var(--disclaimer-text-color-base);
}

.disclaimer .disclaimer__inner {
    max-width: 112rem;
    margin: 0 auto;
}

.disclaimer a {
    color: inherit;
}

@media only screen and (max-width: 767px) {
    .disclaimer {
        padding: 1.5rem 0 1.3rem;
        line-height: 1.33;
        letter-spacing: -0.017em;
    }

    .disclaimer .disclaimer__inner {
        padding-right: 0.2rem;
    }
}

/* ------------------------------------------------------------ *\
captcha
\* ------------------------------------------------------------ */
#captcha-section {
    width: 328px;
    margin-bottom: 25px;
}

.captcha-box {
    display: flex;
    flex-direction: column;
}

.g-recaptcha {
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    -moz-transform-origin: 0;
    -ms-transform-origin: 0;
    -o-transform-origin: 0;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transform-origin: 0 0;
    transform-origin: 0;
}

.captcha {
    background-color: var(--captcha-background-color);
    border: 1px solid var(--input-border-color-subtle);
    border-radius: 4px;
    color: var(--input-text-color-default);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    max-width: 328px;
    margin: 0 auto;
}
@media (max-width: 767px),
    screen and (max-width: 812px) and (orientation: landscape) {
    .captcha {
        padding-right: 20px;
    }

    #captcha-error {
        align-self: left;
    }
}

.captcha .captcha__text {
    font-weight: 900;
    font-size: 20px;
    margin-right: 10px;
    letter-spacing: -0.01em;
    line-height: 1;
}
.captcha input {
    position: absolute;
    top: 0;
    left: -9999999px;
    opacity: 0;
    visibility: hidden;
}
.captcha label {
    position: relative;
    padding-left: 44px;
}
.captcha label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--input-background-color-default);
    width: 24px;
    height: 24px;
    border: 1px solid var(--input-border-color-subtle);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}
.captcha input:checked + label:after {
    opacity: 0;
    animation:
        f 5s linear,
        1s 1s e linear infinite;
    -webkit-animation:
        f 5s linear,
        1s 1s e linear infinite;
}
.captcha label:before {
    opacity: 0;
    visibility: hidden;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/checkmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    -webkit-transition:
        opacity 0.3s,
        visibility 0.3s;
    -o-transition:
        opacity 0.3s,
        visibility 0.3s;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}
.captcha input:checked + label:before {
    animation: g 1s linear forwards;
    -webkit-animation: g 1s linear forwards;
    -webkit-animation-delay: 5.2s;
    animation-delay: 5.2s;
}
.captcha .captcha__logo {
    color: var(--captcha-logo-color);
    font-size: 10px;
    letter-spacing: -0.01em;
}
.captcha .captcha__logo img {
    display: block;
}
.captcha ::selection {
    background-color: transparent;
    color: teal;
}
.captcha ::-moz-selection {
    background-color: transparent;
    color: teal;
}

#captcha-error {
    display: inline-block;
    height: 16px;
    text-align: left;
    width: 100%;
    max-width: 304px;
    margin-bottom: 0;
}

@-webkit-keyframes e {
    0% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
    to {
        -webkit-transform: scale(1) rotate(1turn);
        transform: scale(1) rotate(1turn);
    }
}
@-webkit-keyframes f {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        border-radius: 50%;
        -webkit-background-color: transparent;
        background-color: transparent;
    }
    20% {
        -webkit-transform: scale(1);
        transform: scale(1);
        border-width: 2px;
    }
    30% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    to {
        -webkit-transform: scale(1) rotate(90deg);
        transform: scale(1) rotate(4turn);
        border-width: 2px;
        opacity: 0;
        border-radius: 50%;
    }
}
@-webkit-keyframes g {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

/* ------------------------------------------------------------ *\
	Accordion
\* ------------------------------------------------------------ */

.accordion .accordion__section {
    border: solid 0.1rem var(--accordion-border-color);
    -webkit-tap-highlight-color: transparent;
}

.accordion .accordion__section + .accordion__section {
    border-top: none;
}

.accordion .accordion__section:first-child {
    border-radius: 0.4rem 0.4rem 0 0;
}

.accordion .accordion__section:last-child {
    border-radius: 0 0 0.4rem 0.4rem;
}

.accordion h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--accordion-header-text-color);
    margin-bottom: 0;
}

.accordion .accordion__section.is-current .accordion__head:before {
    transform: rotate(90deg) scaleX(0);
}

.accordion__head {
    position: relative;
    padding: 1.6rem 2.4rem 1.6rem 1.6rem;
    cursor: pointer;
}

.accordion__head:after,
.accordion__head:before {
    content: "";
    position: absolute;
    top: 49%;
    right: 0.8rem;
    width: 1.2rem;
    transform: translateY(-50%);
    border: solid 0.1rem var(--accordion-icon-color);
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.accordion__head:before {
    top: calc(49% - 0.1rem);
    transform: rotate(90deg);
}

.accordion .accordion__body {
    display: none;
    background-color: var(--accordion-background-color);
    padding: 1.6rem 2.4rem 1.5rem;
}

.accordion__body ul {
    list-style: none;
}

.accordion__body ul li {
    font-size: 1.8rem;
    line-height: 1.22;
}

.accordion__body ul li + li {
    margin-top: 0.8rem;
}

.accordion__body ul li p {
    color: var(--body-text-color);
    text-decoration: none;
}

.accordion__body ul li a {
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

.accordion__body ul li a:hover {
    text-decoration: underline;
}

.accordion__body ul li a.link-blue {
    text-decoration: underline;
    color: var(--anchor-text-color-vibrant);
}

.accordion__body ul li a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .accordion {
        padding-left: 0;
    }

    .accordion h3 {
        font-size: 1.8rem;
    }

    .accordion__head {
        padding: 1.6rem 2.4rem 1.6rem 1.5rem;
    }

    .accordion__head:after,
    .accordion__head:before {
        right: 1rem;
    }

    .accordion__body ul li {
        font-size: 1.6rem;
    }

    .accordion__body ul li + li {
        margin-top: 1.6rem;
    }
}

.accordion.PF .accordion__section {
    border: solid 0.1rem var(--accordion-border-color);
}

.accordion.PF .accordion__section {
    margin-bottom: 16px;
    border-radius: 16px;
}

.accordion.PF .accordion__head {
    border-radius: 16px;
    background-color: var(--accordion-header-background-color);
    color: var(--accordion-header-text-color);
    transition: border-radius 0.5s ease;
}
.accordion.PF .accordion__section.is-current .accordion__head {
    border-radius: 16px 16px 0 0;
}

.accordion.PF h3 {
    color: var(--accordion-header-text-color);
}

.accordion.PF .accordion__head:after,
.accordion.PF .accordion__head:before {
    border: solid 0.1rem var(--accordion-icon-color);
}

.accordion.PF .accordion__body {
    background-color: var(--accordion-background-color);
    border-radius: 16px;
}
