[data-template="closeButton"] {
    --icon-size: 40px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: var(--icon-size);
    aspect-ratio: 1 / 1;
    font-size: 0;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

[data-template="closeButton"] .closeButton__icon {
    pointer-events: none;
}

[data-template="closeButton"] .closeButton__icon path {
    fill-opacity: 0.2;
}

[data-template="closeButton"]:hover .closeButton__icon path {
    fill-opacity: 0.35;
}

@media only screen and (max-width: 1024px) {

    [data-template="closeButton"] {
        --icon-size: 32px;
    }

    [data-template="closeButton"] .closeButton__icon {
        width: 32px;
        height: 32px;
    }

}