a {
    text-decoration: none;
    margin: 0 !important;
}

button {
    border: none;
    background: transparent;
}

.link-button {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.link-button i {
    color: var(--accent-color) !important;
    font-size: 0.7rem;
}

.primary-btn {
    display: inline-block;
    font-weight: 500;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-btn .btn-contents {
    position: relative;
    z-index: 0;
    min-width: 130px;
    min-height: 36px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    color: #555555;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.primary-btn .btn-contents-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.primary-btn .btn-contents::before,
.primary-btn .btn-contents::after,
.primary-btn .btn-contents-text::before,
.primary-btn .btn-contents-text::after {
    content: "";
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: #555555;
    transition: all 0.5s ease;
}

.primary-btn .btn-contents::before {
    top: 0;
    left: 44px;
    width: calc(100% - 46px * 2 - 16px);
}

.primary-btn .btn-contents::after {
    top: 0;
    right: 44px;
    width: 8px;
}

.primary-btn .btn-contents-text::before {
    bottom: 0;
    right: 44px;
    width: calc(100% - 46px * 2 - 16px);
}

.primary-btn .btn-contents-text::after {
    bottom: 0;
    left: 44px;
    width: 8px;
}

.primary-btn .btn-contents-line {
    position: absolute;
    top: 0;
    width: 46px;
    height: 100%;
    overflow: hidden;
}

.primary-btn .btn-contents-line::before {
    content: "";
    position: absolute;
    top: 0;
    width: 150%;
    height: 100%;
    box-sizing: border-box;
    border: solid 3px #555555;
    border-radius: 10px;
}

.primary-btn .btn-contents-line:nth-child(1),
.primary-btn .btn-contents-line:nth-child(1)::before {
    left: 0;
}

.primary-btn .btn-contents-line:nth-child(2),
.primary-btn .btn-contents-line:nth-child(2)::before {
    right: 0;
}

.primary-btn .btn-contents:hover {
    letter-spacing: 3px;
}

.primary-btn .btn-contents:hover::before,
.primary-btn .btn-contents:hover .btn-contents-text::before {
    width: 8px;
}

.primary-btn .btn-contents:hover::after,
.primary-btn .btn-contents:hover .btn-contents-text::after {
    width: calc(100% - 46px * 2 - 16px);
}

.destructive-btn .btn-contents {
    background-color: red;
    border-radius: 10px;
    color: white;
}

.primary-btn .btn-contents-text svg {
    vertical-align: -10%;
}
