// Copyright (c) 2016-2018 VMware, Inc. All Rights Reserved.
// This software is released under MIT license.
// The full license information can be found in LICENSE in the root directory of this project.

@include exports('close.clarity') {

    .close {
        transition: color linear 0.2s;
        font-weight: 200;
        text-shadow: none;
        line-height: inherit;
        color: $close-color--normal;
        opacity: 1;

        clr-icon {
            fill: $close-color--normal
        }

        &:focus, &:hover, &:active {
            opacity: 1;
            color: $close-color--hover;

            clr-icon {
                fill: $close-color--hover;
            }
        }

        &:focus {
            @include include-outline-style-form-fields();
        }
    }
}
