/* whatcheap.reset.css */

/* root */
:root {
    --mw-blue-rgb: 13,110,253;
    --mw-indigo-rgb: 102,16,242;
    --mw-purple-rgb: 111,66,193;
    --mw-pink-rgb: 214,51,132;
    --mw-red-rgb: 220,53,69;
    --mw-orange-rgb: 253,126,20;
    --mw-yellow-rgb: 255,193,7;
    --mw-green-rgb: 25,135,84;
    --mw-teal-rgb: 32,201,151;
    --mw-cyan-rgb: 13,202,240;
    --mw-white-rgb: 255,255,255;
    --mw-light-rgb: 248,249,250;
    --mw-gray-rgb: 108,117,125;
    --mw-gray-dark-rgb: 52,58,64;
    --mw-black-rgb: 0,0,0;
}



/*  */
.w-30 { width: 30%!important; }
.w-40 { width: 40%!important; }
.w-50 { width: 50%!important; }
.w-60 { width: 60%!important; }
.w-70 { width: 70%!important; }
.w-80 { width: 80%!important; }
.w-90 { width: 90%!important; }



/* color picker */
input[type="color"] {
    height:58px;
}



/* Background Color & Gradient */
.style-theme-section div[class*="bg-color-"] {
    height:14rem;
    border:solid 1px #CCC;
}
.style-bg-color-section button[class*="bg-color-"] {
    height:100px;
    border:solid 1px #CCC;
}



.bg-height-full {
    min-height:100vh;
}
.bg-color-default {
    background:rgb(var(--mw-white-rgb));
    color:rgb(var(--mw-black-rgb));
}
.bg-color-gray {
    background:rgb(var(--mw-gray-rgb));
    color:rgb(var(--mw-black-rgb));
}
.bg-color-black {
    background:rgb(var(--mw-black-rgb));
    color:rgb(var(--mw-white-rgb));
}



.bg-color-gradient-1 {
    background: rgb(2,0,36);
    background: -moz-linear-gradient(135deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    background: linear-gradient(135deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#00d4ff",GradientType=1);
}
.bg-color-gradient-2 {
    background: rgb(34,193,195);
    background: -moz-linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#22c1c3",endColorstr="#fdbb2d",GradientType=1);
}
.bg-color-gradient-3 {
    background: rgb(63,94,251);
    background: -moz-radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3f5efb",endColorstr="#fc466b",GradientType=1);
}
.bg-color-gradient-4 {
    background: rgb(131,58,180);
    background: -moz-linear-gradient(135deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    background: linear-gradient(135deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#833ab4",endColorstr="#fcb045",GradientType=1);
}
.bg-color-gradient-5 {
    background: rgb(238,174,202);
    background: -moz-radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeaeca",endColorstr="#94bbe9",GradientType=1);
}
.bg-color-gradient-6, .bg-color-gradient {
    background: linear-gradient(160deg,#ffb7b7 9%,#727272 100%), radial-gradient(100% 100% at 30% 10%,#ffd1d1 0,#260000 100%), linear-gradient(180deg,#0ff 0,#fff 100%), radial-gradient(100% 100% at 70% 0,red 0,#00ffe0 100%), linear-gradient(280deg,#dbff00 0,#30f 100%);
    background-blend-mode: screen,overlay,color-burn,color-dodge,normal;
}



/* Button Color */
.btn-color-blue {
    background-color:rgba(var(--mw-blue-rgb), 1);
    border-color:rgba(var(--mw-blue-rgb), 1);
    color:#FFFFFF;
}
.btn-color-blue:hover,
.btn-color-blue:focus,
.btn-color-blue:active {
    background-color:rgba(var(--mw-blue-rgb), 0.7);
    border-color:rgba(var(--mw-blue-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-indigo {
    background-color:rgba(var(--mw-indigo-rgb), 1);
    border-color:rgba(var(--mw-indigo-rgb), 1);
    color:#FFFFFF;
}
.btn-color-indigo:hover,
.btn-color-indigo:focus,
.btn-color-indigo:active {
    background-color:rgba(var(--mw-indigo-rgb), 0.7);
    border-color:rgba(var(--mw-indigo-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-purple {
    background-color:rgba(var(--mw-purple-rgb), 1);
    border-color:rgba(var(--mw-purple-rgb), 1);
    color:#FFFFFF;
}
.btn-color-purple:hover,
.btn-color-purple:focus,
.btn-color-purple:active {
    background-color:rgba(var(--mw-purple-rgb), 0.7);
    border-color:rgba(var(--mw-purple-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-pink {
    background-color:rgba(var(--mw-pink-rgb), 1);
    border-color:rgba(var(--mw-pink-rgb), 1);
    color:#FFFFFF;
}
.btn-color-pink:hover,
.btn-color-pink:focus,
.btn-color-pink:active {
    background-color:rgba(var(--mw-pink-rgb), 0.7);
    border-color:rgba(var(--mw-pink-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-red {
    background-color:rgba(var(--mw-red-rgb), 1);
    border-color:rgba(var(--mw-red-rgb), 1);
    color:#FFFFFF;
}
.btn-color-red:hover,
.btn-color-red:focus,
.btn-color-red:active {
    background-color:rgba(var(--mw-red-rgb), 0.7);
    border-color:rgba(var(--mw-red-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-orange {
    background-color:rgba(var(--mw-orange-rgb), 1);
    border-color:rgba(var(--mw-orange-rgb), 1);
    color:#FFFFFF;
}
.btn-color-orange:hover,
.btn-color-orange:focus,
.btn-color-orange:active {
    background-color:rgba(var(--mw-orange-rgb), 0.7);
    border-color:rgba(var(--mw-orange-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-yellow {
    background-color:rgba(var(--mw-yellow-rgb), 1);
    border-color:rgba(var(--mw-yellow-rgb), 1);
    color:#FFFFFF;
}
.btn-color-yellow:hover,
.btn-color-yellow:focus,
.btn-color-yellow:active {
    background-color:rgba(var(--mw-yellow-rgb), 0.7);
    border-color:rgba(var(--mw-yellow-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-green {
    background-color:rgba(var(--mw-green-rgb), 1);
    border-color:rgba(var(--mw-green-rgb), 1);
    color:#FFFFFF;
}
.btn-color-green:hover,
.btn-color-green:focus,
.btn-color-green:active {
    background-color:rgba(var(--mw-green-rgb), 0.7);
    border-color:rgba(var(--mw-green-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-teal {
    background-color:rgba(var(--mw-teal-rgb), 1);
    border-color:rgba(var(--mw-teal-rgb), 1);
    color:#000000;
}
.btn-color-teal:hover,
.btn-color-teal:focus,
.btn-color-teal:active {
    background-color:rgba(var(--mw-teal-rgb), 0.7);
    border-color:rgba(var(--mw-teal-rgb), 0.7);
    color:#000000;
}


.btn-color-cyan {
    background-color:rgba(var(--mw-cyan-rgb), 1);
    border-color:rgba(var(--mw-cyan-rgb), 1);
    color:#000000;
}
.btn-color-cyan:hover,
.btn-color-cyan:focus,
.btn-color-cyan:active {
    background-color:rgba(var(--mw-cyan-rgb), 0.7);
    border-color:rgba(var(--mw-cyan-rgb), 0.7);
    color:#000000;
}


.btn-color-white {
    background-color:rgba(var(--mw-white-rgb), 1);
    border-color:rgba(var(--mw-white-rgb), 1);
    color:#000000;
}
.btn-color-white:hover,
.btn-color-white:focus,
.btn-color-white:active {
    background-color:rgba(var(--mw-white-rgb), 0.7);
    border-color:rgba(var(--mw-white-rgb), 0.7);
    color:#000000;
}


.btn-color-light {
    background-color:rgba(var(--mw-light-rgb), 1);
    border-color:rgba(var(--mw-light-rgb), 1);
    color:#000000;
}
.btn-color-light:hover,
.btn-color-light:focus,
.btn-color-light:active {
    background-color:rgba(var(--mw-light-rgb), 0.7);
    border-color:rgba(var(--mw-light-rgb), 0.7);
    color:#000000;
}


.btn-color-gray {
    background-color:rgba(var(--mw-gray-rgb), 1);
    border-color:rgba(var(--mw-gray-rgb), 1);
    color:#FFFFFF;
}
.btn-color-gray:hover,
.btn-color-gray:focus,
.btn-color-gray:active {
    background-color:rgba(var(--mw-gray-rgb), 0.7);
    border-color:rgba(var(--mw-gray-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-gray-dark {
    background-color:rgba(var(--mw-gray-dark-rgb), 1);
    border-color:rgba(var(--mw-gray-dark-rgb), 1);
    color:#FFFFFF;
}
.btn-color-gray-dark:hover,
.btn-color-gray-dark:focus,
.btn-color-gray-dark:active {
    background-color:rgba(var(--mw-gray-dark-rgb), 0.7);
    border-color:rgba(var(--mw-gray-dark-rgb), 0.7);
    color:#FFFFFF;
}


.btn-color-black {
    background-color:rgba(var(--mw-black-rgb), 1);
    border-color:rgba(var(--mw-black-rgb), 1);
    color:#FFFFFF;
}
.btn-color-black:hover,
.btn-color-black:focus,
.btn-color-black:active {
    background-color:rgba(var(--mw-black-rgb), 0.7);
    border-color:rgba(var(--mw-black-rgb), 0.7);
    color:#FFFFFF;
}



/* Button Shape */
.style-btn-shape-section button[class*="btn-shape-fill-"] {
    background-color:rgb(var(--mw-black-rgb));
    border-color:rgb(var(--mw-gray-rgb));
    color:rgb(var(--mw-white-rgb));
}
.style-btn-shape-section button[class*="btn-shape-fill-"]:hover,
.style-btn-shape-section button[class*="btn-shape-fill-"]:focus {
    background-color:rgba(var(--mw-black-rgb), 0.7);
    border-color:rgb(var(--mw-gray-rgb));
    color:rgb(var(--mw-white-rgb));
}


.style-btn-shape-section button[class*="btn-shape-outline-"] {
    background-color:transparent;
    border-color:rgb(var(--mw-gray-rgb));
    color:rgb(var(--mw-gray-rgb));
}
.style-btn-shape-section button[class*="btn-shape-outline-"]:hover,
.style-btn-shape-section button[class*="btn-shape-outline-"]:focus {
    background-color:rgba(var(--mw-gray-rgb), 0.7);
    color:rgb(var(--mw-gray-rgb));
}


.style-btn-shape-section button[class*="btn-shape-shadow-fill-"] {
    background-color:rgb(var(--mw-black-rgb));
    border-color:rgb(var(--mw-black-rgb));
}
.style-btn-shape-section button[class*="btn-shape-shadow-fill-"]:hover,
.style-btn-shape-section button[class*="btn-shape-shadow-fill-"]:focus {
    background-color:rgba(var(--mw-black-rgb), 0.7);
    color:rgb(var(--mw-gray-rgb));
}


.style-btn-shape-section button[class*="btn-shape-shadow-transparent-"] {
    background-color:transparent;
}
.style-btn-shape-section button[class*="btn-shape-shadow-transparent-"]:hover,
.style-btn-shape-section button[class*="btn-shape-shadow-transparent-"]:focus {
    background-color:rgba(var(--mw-gray-rgb), 0.7);
    color:rgb(var(--mw-black-rgb));
}


.style-btn-shape-section button[class*="btn-shape-shadow-hard-"] {
    background-color:rgb(var(--mw-black-rgb));
    border:solid 1px rgb(var(--mw-black-rgb));
    box-shadow:8px 8px 0px 0px rgba(var(--mw-black-rgb), 0.7);
}


.style-btn-shape-section button[class*="btn-shape-shadow-outline-"] {
    border:solid 1px rgb(var(--mw-black-rgb));
    box-shadow:8px 8px 0px 0px rgba(var(--mw-black-rgb), 0.7);
}


.style-theme-section div[class*="btn"] {

    width:100%;
    height:20px;
}



.btn-shape-fill-01 {
    border-radius:0;
}
.btn-shape-fill-01:hover,
.btn-shape-fill-01:focus {
}


.btn-shape-fill-02 {
}
.btn-shape-fill-02:hover,
.btn-shape-fill-02:focus {
}


.btn-shape-fill-03 {
    border-radius:25px;
}
.btn-shape-fill-03:hover,
.btn-shape-fill-03:focus {
}



.btn-shape-outline-01 {
    background-color:transparent;
    border-radius:0;
}
.btn-shape-outline-01:hover,
.btn-shape-outline-01:focus {
}

.btn-shape-outline-02 {
    background-color:transparent;
}
.btn-shape-outline-02:hover,
.btn-shape-outline-02:focus {
}

.btn-shape-outline-03 {
    background-color:transparent;
    border-radius:25px;
}
.btn-shape-outline-03:hover,
.btn-shape-outline-03:focus {
}


.btn-shape-shadow-fill-01 {
    border-color:transparent;
    border-radius:0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.btn-shape-shadow-fill-01:hover,
.btn-shape-shadow-fill-01:focus {
    border-color:transparent;
}

.btn-shape-shadow-fill-02 {
    border-color:transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.btn-shape-shadow-fill-02:hover,
.btn-shape-shadow-fill-02:focus {
    border-color:transparent;
}

.btn-shape-shadow-fill-03 {
    border-color:transparent;
    border-radius:25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.btn-shape-shadow-fill-03:hover,
.btn-shape-shadow-fill-03:focus {
    border-color:transparent;
}


.btn-shape-shadow-transparent-01 {
    background-color:transparent;
    border-color:transparent;
    border-radius:0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.btn-shape-shadow-transparent-01:hover,
.btn-shape-shadow-transparent-01:focus {
    background-color:transparent;
}

.btn-shape-shadow-transparent-02 {
    background-color:transparent;
    border-color:transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.btn-shape-shadow-transparent-02:hover,
.btn-shape-shadow-transparent-02:focus {
    background-color:transparent;
}

.btn-shape-shadow-transparent-03 {
    background-color:transparent;
    border-color:transparent;
    border-radius:25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.btn-shape-shadow-transparent-03:hover,
.btn-shape-shadow-transparent-03:focus {
    background-color:transparent;
}


.btn-shape-shadow-hard-01 {
    box-shadow:8px 8px 0px 0px;
    transition:transform 0.1s ease-in-out;
    border-radius:0;
}
.btn-shape-shadow-hard-01:hover {
    transform:translate(-2px, -2px);
}

.btn-shape-shadow-hard-02 {
    box-shadow:8px 8px 0px 0px;
    transition:transform 0.1s ease-in-out;
}
.btn-shape-shadow-hard-02:hover {
    transform:translate(-2px, -2px);
}

.btn-shape-shadow-hard-03 {
    box-shadow:8px 8px 0px 0px;
    transition:transform 0.1s ease-in-out;
    border-radius:25px;
}
.btn-shape-shadow-hard-03:hover {
    transform:translate(-2px, -2px);
}


.btn-shape-shadow-outline-01 {
    background-color:transparent;
    box-shadow:8px 8px 0px 0px;
    transition:transform 0.1s ease-in-out;
    border-radius:0;
}
.btn-shape-shadow-outline-01:hover {
    transform:translate(-2px, -2px);
}

.btn-shape-shadow-outline-02 {
    background-color:transparent;
    box-shadow:8px 8px 0px 0px;
    transition:transform 0.1s ease-in-out;
}
.btn-shape-shadow-outline-02:hover {
    transform:translate(-2px, -2px);
}

.btn-shape-shadow-outline-03 {
    background-color:transparent;
    box-shadow:8px 8px 0px 0px;
    transition:transform 0.1s ease-in-out;
    border-radius:25px;
}
.btn-shape-shadow-outline-03:hover {
    transform:translate(-2px, -2px);
}





/* CSS */
.btn-shape-button-4 {
    appearance: none;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292E;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

.btn-shape-button-4:hover {
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
}

.btn-shape-button-4:disabled {
    background-color: #FAFBFC;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959DA5;
    cursor: default;
}

.btn-shape-button-4:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.btn-shape-button-4:focus {
    outline: 1px transparent;
}

.btn-shape-button-4:before {
    display: none;
}

.btn-shape-button-4:-webkit-details-marker {
    display: none;
}







/* CSS */
.btn-shape-button-14 {
    background-image: linear-gradient(#f7f8fa ,#e7e9ec);
    border-color: #adb1b8 #a2a6ac #8d9096;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    box-shadow: rgba(255,255,255,.6) 0 1px 0 inset;
    box-sizing: border-box;
    color: #0f1111;
    cursor: pointer;
    display: inline-block;
    font-family: "Amazon Ember",Arial,sans-serif;
    font-size: 14px;
    height: 29px;
    font-size: 13px;
    outline: 0;
    overflow: hidden;
    padding: 0 11px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.btn-shape-button-14:active {
    border-bottom-color: #a2a6ac;
}

.btn-shape-button-14:active:hover {
    border-bottom-color: #a2a6ac;
}

.btn-shape-button-14:hover {
    border-color: #a2a6ac #979aa1 #82858a;
}

.btn-shape-button-14:focus {
    border-color: #e77600;
    box-shadow: rgba(228, 121, 17, .5) 0 0 3px 2px;
    outline: 0;
}



/* CSS */
.btn-shape-button-38 {
    background-color: #FFFFFF;
    border: 0;
    border-radius: .5rem;
    box-sizing: border-box;
    color: #111827;
    font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25rem;
    padding: .75rem 1rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-38:hover {
    background-color: rgb(249,250,251);
}

.btn-shape-button-38:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.btn-shape-button-38:focus-visible {
    box-shadow: none;
}










.btn-shape-button-50 {
    appearance: button;
    background-color: #000;
    background-image: none;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: #fff 4px 4px 0 0,#000 4px 4px 0 1px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: ITCAvantGardeStd-Bk,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 5px 10px 0;
    overflow: visible;
    padding: 12px 40px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.btn-shape-button-50:focus {
    text-decoration: none;
}

.btn-shape-button-50:hover {
    text-decoration: none;
}

.btn-shape-button-50:active {
    box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
    outline: 0;
}

.btn-shape-button-50:not([disabled]):active {
    box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
    transform: translate(2px, 2px);
}

@media (min-width: 768px) {
    .btn-shape-button-50 {
        padding: 12px 50px;
    }
}




/* CSS */
.btn-shape-button-51 {
    background-color: transparent;
    border: 1px solid #266DB6;
    box-sizing: border-box;
    color: #00132C;
    font-family: "Avenir Next LT W01 Bold",sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 16px 23px;
    position: relative;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-51:hover,
.btn-shape-button-51:active {
    outline: 0;
}

.btn-shape-button-51:hover {
    background-color: transparent;
    cursor: pointer;
}

.btn-shape-button-51:before {
    background-color: #D5EDF6;
    content: "";
    height: calc(100% + 3px);
    position: absolute;
    right: -7px;
    top: -9px;
    transition: background-color 300ms ease-in;
    width: 100%;
    z-index: -1;
}

.btn-shape-button-51:hover:before {
    background-color: #6DCFF6;
}

@media (min-width: 768px) {
    .btn-shape-button-51 {
        padding: 16px 32px;
    }
}




/* CSS */
.btn-shape-button-52 {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-52:after {
    content: "";
    background-color: #ffe54c;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

.btn-shape-button-52:hover:after {
    top: 0px;
    left: 0px;
}

@media (min-width: 768px) {
    .btn-shape-button-52 {
        padding: 13px 50px 13px;
    }
}



/* CSS */
.btn-shape-button-53 {
    background-color: #3DD1E7;
    border: 0 solid #E5E7EB;
    box-sizing: border-box;
    color: #000000;
    display: flex;
    font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.75rem;
    padding: .75rem 1.65rem;
    position: relative;
    text-align: center;
    text-decoration: none #000000 solid;
    text-decoration-thickness: auto;
    width: 100%;
    max-width: 460px;
    position: relative;
    cursor: pointer;
    transform: rotate(-2deg);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-53:focus {
    outline: 0;
}

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

.btn-shape-button-53:hover:after {
    bottom: 2px;
    left: 2px;
}

@media (min-width: 768px) {
    .btn-shape-button-53 {
        padding: .75rem 3rem;
        font-size: 1.25rem;
    }
}





/* CSS */
.btn-shape-button-54 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    border: 3px solid;
    padding: 0.25em 0.5em;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-54:active {
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}

@media (min-width: 768px) {
    .btn-shape-button-54 {
        padding: 0.25em 0.75em;
    }
}





/* CSS */
.btn-shape-button-55 {
    align-self: center;
    background-color: #fff;
    background-image: none;
    background-position: 0 90%;
    background-repeat: repeat no-repeat;
    background-size: 4px 3px;
    border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
    border-style: solid;
    border-width: 2px;
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    box-sizing: border-box;
    color: #41403e;
    cursor: pointer;
    display: inline-block;
    font-family: Neucha, sans-serif;
    font-size: 1rem;
    line-height: 23px;
    outline: none;
    padding: .75rem;
    text-decoration: none;
    transition: all 235ms ease-in-out;
    border-bottom-left-radius: 15px 255px;
    border-bottom-right-radius: 225px 15px;
    border-top-left-radius: 255px 15px;
    border-top-right-radius: 15px 225px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-55:hover {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
    transform: translate3d(0, 2px, 0);
}

.btn-shape-button-55:focus {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}



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

.btn-shape-button-56:after {
    background-color: #111;
    border-radius: 8px;
    content: "";
    display: block;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -2px;
    transform: translate(8px, 8px);
    transition: transform .2s ease-out;
    z-index: -1;
}

.btn-shape-button-56:hover:after {
    transform: translate(0, 0);
}

.btn-shape-button-56:active {
    background-color: #ffdeda;
    outline: 0;
}

.btn-shape-button-56:hover {
    outline: 0;
}

@media (min-width: 768px) {
    .btn-shape-button-56 {
        padding: 0 40px;
    }
}




/* CSS */
.btn-shape-button-57 {
    position: relative;
    overflow: hidden;
    border: 1px solid #18181a;
    color: #18181a;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 18px 18px 17px;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-57 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.btn-shape-button-57 span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
}

.btn-shape-button-57:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.btn-shape-button-57:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.btn-shape-button-57:hover span:last-child {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}





/* CSS */
.btn-shape-button-59 {
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    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;
}

.btn-shape-button-59:focus {
    color: #171e29;
}

.btn-shape-button-59:hover {
    border-color: #06f;
    color: #06f;
    fill: #06f;
}

.btn-shape-button-59:active {
    border-color: #06f;
    color: #06f;
    fill: #06f;
}

@media (min-width: 768px) {
    .btn-shape-button-59 {
        min-width: 170px;
    }
}









/* CSS */
.btn-shape-button-74 {
    background-color: #fbeee0;
    border: 2px solid #422800;
    border-radius: 30px;
    box-shadow: #422800 4px 4px 0 0;
    color: #422800;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-74:hover {
    background-color: #fff;
}

.btn-shape-button-74:active {
    box-shadow: #422800 2px 2px 0 0;
    transform: translate(2px, 2px);
}

@media (min-width: 768px) {
    .btn-shape-button-74 {
        min-width: 120px;
        padding: 0 25px;
    }
}




/* CSS */
.btn-shape-button-85 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-shape-button-85: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-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

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

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






/* CSS */
.btn-shape-button-89 {
    --b: 3px;   /* border thickness */
    --s: .45em; /* size of the corner */
    --color: #373B44;
    
    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;

    border: 0;

    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

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

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






