// Buttons

.btn-ghost {
    background-color: $gray-200;
    color: inherit;

    &:hover {
        color: #fff;
        background-color: $primary;
    }
}

.btn-ghost-outline {
    border-color: $gray-200;
    color: $gray-600;

    &:hover {
        color: #fff;
        border-color: $primary;
        background-color: $primary;
    }
}
.btn-browse {

    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba($primary, 0.75);
    color: #fff;
    &:hover {
        background-color: $primary;
    color: #fff;
    }
}
// Ghost Secondary
.btn-ghost-secondary {

    &:hover,
    &:focus,
    &.focus,
    &:active {
        color: $primary;
        background-color: rgba($primary, .1);
    }

    &.btn-no-focus {
        &[href] {

            &:focus,
            &.focus,
                {
                &:hover {
                    color: $primary;
                    background-color: rgba($primary, .1);
                }
            }
        }
    }
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@each $key,
$value in $btn-icon-sizes {
    .btn-icon-#{$key} {
        width: #{$value};
        height: #{$value};
    }
}

.btn-fixed {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
}

.whatsapp-btn {
    position: fixed;
    right: 0;
    top: 50%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px 20px;
    background-color: #128c7e;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: $box-shadow;
    z-index: 1200;
    i {
        font-size: 26px;
    }

    span {
        display: none;
    }
    &:hover {
      color: #fff;
      span {
        margin-left: .5rem;
        display: inline-block;
      }
    }
}