/* CSS */
/*button 56*/
.pink-shadow {
    align-items: center;
    background-color: #fee6e3;
    border: 2px solid #111;
    border-radius: 10px;
    box-sizing: border-box;
    color: #111;
    cursor: pointer;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    height: 50px;
    justify-content: center;
    line-height: 24px;
    width: 100%;
    /*padding-top: 0 100%;*/
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.pink-shadow{
    box-shadow: 10px 10px 0px black
}

.pink-shadow:hover{
    box-shadow: 0px 0px 0px black;
    color: black;
}

.row-button{
    font-size: 30px;
}

/*
@media (min-width: 768px) {
    .button-56 {
        padding: 0px 50%;
    }
}
*/

.link-title{
    page-break-inside: avoid;
    margin-left: -100%;
    padding-right: -100%;
    margin-right: -100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

/*button 53*/

.transparent-blue {
    align-items: center;
    background-color: #3DD1E7;
    border: 0 solid #E5E7EB;
    box-sizing: border-box;
    color: #000000;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    line-height: 24px;
    padding: .75rem 1.65rem;
    position: relative;
    text-align: center;
    text-decoration: none #000000 solid;
    text-decoration-thickness: auto;
    width: 100%;
    position: relative;
    cursor: pointer;
    transform: rotate(-2deg);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.transparent-blue:focus {
    outline: 0;
}

.transparent-blue:hover {
    color: black;
}

.transparent-blue:after {
    content: '';
    position: absolute;
    border: 1px solid #000000;
    bottom: 4px;
    left: 4px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
}

.transparent-blue:hover:after {
    bottom: 2px;
    left: 2px;
    color: black;
}

@media (min-width: 768px) {
    .transparent-blue {
        padding: .75rem 3rem;
        font-size: 1.25rem;
    }
}

/*Button 85*/
.button-rgb {
    /*padding: 0.6em 2em;*/
    border: none;
    outline: none;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: #111;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    align-items: center;
    box-sizing: border-box;
    display: flex;
    font-family: Inter, sans-serif;
    font-weight: 700;
    justify-content: center;
    line-height: 24px;
    padding: .75rem 1.65rem;
    text-align: center;
    text-decoration: none #000000 solid;
    text-decoration-thickness: auto;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.button-rgb:hover{
    color: white;
}

.button-rgb:before {
    content: "";
    background: linear-gradient(
            45deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-rgb 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-rgb {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.button-rgb:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

/*Button 89*/

/* CSS */
.button-89 {
    --b: 3px;   /* border thickness */
    --s: .45em; /* size of the corner */
    --color: #373B44;
    align-items: center;
    padding: calc(.5em + var(--s)) calc(.9em + var(--s));
    color: var(--color);
    --_p: var(--s);
    background:
           conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
           var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
    transition: .3s linear, color 0s, background-color 0s;
    outline: var(--b) solid #0000;
    outline-offset: .6em;
    font-size: 16px;
    height: 50px;
    border: 0;
    width: 100%;
    display: flex;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.button-89:hover,
.button-89:focus-visible{
    --_p: 0px;
    outline-color: var(--color);
    outline-offset: .05em;
}

.button-89:active {
    background: var(--color);
    color: #fff;
}

/*Button 19*/
.solid-blue {
    appearance: button;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    font-family: din-round,sans-serif;
    font-size: 16px;
    height: 50px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    text-align: center;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: 100%;
}

.solid-blue:after {
    background-clip: padding-box;
    background-color: #1CB0F6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.solid-blue:main,
.solid-blue:focus {
    user-select: auto;
}

.solid-blue:hover:not(:disabled) {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
}

.solid-blue:hover{
    color: white;
}

.solid-blue:disabled {
    cursor: auto;
}

.solid-blue:active {
    border-width: 4px 0 0;
    background: none;
}

/*Button 59*/
.white-and-blue {
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: flex;
    width: 100%;
    fill: #000;
    font-family: Inter,sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -.8px;
    line-height: 24px;
    min-width: 140px;
    outline: 0;
    padding: 0 17px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.white-and-blue:focus {
    color: #171e29;
}

.white-and-blue:hover {
    border-color: #06f;
    color: #06f;
    fill: #06f;
}

.white-and-blue:active {
    border-color: #06f;
    color: #06f;
    fill: #06f;
}

@media (min-width: 768px) {
    .white-and-blue {
        min-width: 170px;
    }
}

/*Button 64*/
.purple-blue {
    align-items: center;
    background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 16px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    height: 50px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
}

.purple-blue:active,
.purple-blue:hover {
    outline: 0;
    color: white;
}

.purple-blue span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.purple-blue:hover span {
    background: none;
}

@media (min-width: 768px) {
    .purple-blue {
        font-size: 24px;
        min-width: 196px;
    }
}

/*Button 52*/
.transparent-yellow {
    align-items: center;
    background-color: #ffe54c;
    border: 0 solid #E5E7EB;
    box-sizing: border-box;
    color: #000000;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    line-height: 24px;
    padding: .75rem 1.65rem;
    position: relative;
    text-align: center;
    text-decoration: none #000000 solid;
    text-decoration-thickness: auto;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.transparent-yellow:focus {
    outline: 0;
}

.transparent-yellow:after {
    content: '';
    position: absolute;
    border: 1px solid #000000;
    bottom: 4px;
    left: 4px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
}

.transparent-yellow:hover:after {
    bottom: 2px;
    left: 2px;
}

.transparent-yellow:hover {
    color: black;
}

@media (min-width: 768px) {
    .transparent-yellow {
        padding: .75rem 3rem;
        font-size: 1.25rem;
    }
}

/*Button 1*/
.blue-button {
    --😀: #644dff;
    --😀😀: #4836bb;
    --😀😀😀: #654dff63;
    cursor: pointer;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125em;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: var(--😀);
    border: 2px solid var(--😀😀);
    border-radius: .75rem;
    box-shadow: 0 8px 0 var(--😀😀);
    transform: skew(-10deg);
    transition: all .1s ease;
    filter: drop-shadow(0 15px 20px var(--😀😀😀));
}

.blue-button:active {
    letter-spacing: 0px;
    transform: skew(-10deg) translateY(8px);
    box-shadow: 0 0 0 var(--😀😀😀);
}

.blue-button:hover{
    color: white;
}

/*Button 2*/

.golden-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right,#77530a,#ffd277,#77530a,#77530a,#ffd277,#77530a);
    background-size: 250%;
    background-position: left;
    color: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
}

.golden-button::before {
    position: absolute;
    color: #ffd277;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97%;
    height: 90%;
    border-radius: 8px;
    transition-duration: 1s;
    background-color: rgba(0, 0, 0, 0.842);
    background-size: 200%;
}

.golden-button:hover {
    background-position: right;
    transition-duration: 1s;
    color: black;
}

.golden-button:hover::before {
    background-position: right;
    transition-duration: 1s;
}

.golden-button:active {
    transform: scale(0.95);
}