.btn {
    font-family: 'Montserrat-Bold';
    font-weight: var(--font-bold);
    border-radius: var(--border-radius-5);
    cursor: pointer;
}

.btn svg,
.btn svg,
.btn svg,
.btn svg {
    width: .938rem;
    height: .813rem;
}

.btn span,
.btn span,
.btn span,
.btn span {
    white-space: nowrap;
}

/* ============================================================== */

button.btn--repeat {
    height: 3.625rem;
}

button.js-btn--repeat .btn__content {
    height: 100%;
}

.btn--repeat {
    display: inline-flex;
}

.btn--repeat:not(.no-padding) {
    padding: 1rem 2rem;
}


.btn__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    position: relative;
    overflow: hidden;
}

.btn__content > .flex {
    gap: var(--unit-10);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--big {
    padding: 1.5rem 2rem;
}

.btn--repeat .btn-content div {
    will-change: transform;
}

.btn--type-1 {
    border: 1px solid var(--c-white);
    border-radius: var(--border-radius-full);
}

.btn--type-2,
.btn--type-3 {
    background: var(--background-gradient-full);
}

.btn--type-3 {
    position: relative;
}

.btn--type-3::after {
    content: '';
    position: absolute;
    border-radius: var(--border-radius-5);
    left: 1px;
    top: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: var(--c-white);
    z-index: 0;
}

.btn--type-4 {
    background-color: var(--c-white);
}

.btn--type-5 {
    border: 1px solid var(--c-white);
}

.btn--type-3 .btn__content {
    padding: 1px;
}

.btn--type-2 span,
.btn--type-5 span {
    color: var(--c-white);
}

.btn--type-3 span,
.btn--type-4 span {
    background-image: var(--background-gradient-full);
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn--type-3 > *,
.btn--type-4 > *  {
    position: relative;
    z-index: 1;
}

.btn--type-2 svg,
.btn--type-5 svg {
    fill: var(--c-white);
}

.btn--type-3 svg,
.btn--type-4 svg {
    fill: var(--c-blue);
}

.btn--type-6,
.btn--type-7 {
    position: relative;
    display: inline-block;
    padding: 1rem 1rem 1rem 0;
}

.btn--type-6::after,
.btn--type-7::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: calc(100% - 1rem);
    height: 1px;
    transform-origin: left;
}

.btn--type-6 {
    color: var(--c-black);
    cursor: pointer;
}

.btn--type-6::after {
    background-color: var(--c-black);
}

.btn--type-7 {
    color: var(--c-white);
}

.btn--type-7::after {
    background-color: var(--c-white);
}


@media print, screen and (min-width: 1025px) {
    
    .btn__content > div:last-child {
        position: absolute;
        top: 100%;
    }

    .btn--repeat .btn__content div,
    .btn--type-6::after,
    .btn--type-7::after {
        transition: var(--transition);
    }

    .btn--repeat:hover .btn__content div {
        transform: translateY(-100%);
    }

    button.btn--repeat:hover .btn__content div {
        transform: translateY(-1.4rem);
    }

    .btn--type-6:hover::after,
    .btn--type-7:hover::after {
        transform: scaleX(0);
    }
    
}