h1, h2, h3, h4, h5, h6 {
    color: rgb(var(--title-color));
    margin: 0;
}

a {
    outline: none;
    text-decoration: none;
    color: currentColor;
}

ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
    outline: none;
}

input, select, textarea, button {
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgb(var(--secundary-color));
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--border-color));
    border-radius: 3rem;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-color), .3);
}

/* SELECTORES */

.text--bold {
    font-weight: bold;
}

.text--light {
    font-weight: 400;
    color: rgb(var(--text-color--light));
}
.text--medium {
    font-weight: 500;
}

.text--small {
    font-size: .8em;
}

.btn {
    width: max-content;
    padding: 15px 30px;
    background-color: rgb(var(--border-color));
    color: rgb(var(--button-color));
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3rem;
    overflow: hidden;
    cursor: pointer;
}

.btn--primary {
    border: none;
    background: rgb(var(--accent-color));
    color: #fff;
}
.btn--secundary {
    border: none;
    background: rgb(var(--secondary-color));
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}
.ripple-effect .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(var(--border-color));
    pointer-events: none;
    border-radius: 50%;
    animation: ripple 700ms linear infinite;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 700px;
        height: 700px;
        opacity: 0;
    }
}

.focus-effect {
    position: relative;
    transition: .3s;
    overflow: hidden;
}
.focus-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, rgb(var(--accent-color)), rgb(var(--purple-color)));
    transition: .3s;
    border-radius: 3rem;
    pointer-events: none;
    z-index: 1;
}
.focus-effect--active::before {
    width: 100%;
}

.list--style {
    list-style: disc;
    margin-left: 20px;
}

.highlight--text {
    color: rgb(var(--accent-color));
}

.disabled {
    opacity: .6;
    pointer-events: none;
}

.c-separator {
    position: relative;
    margin: 0 auto;
    width: 215px;
    height: .3rem;
    border-radius: .3rem;
    background: rgba(var(--primary-color), .9);
}

.c-separator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.7rem;
    height: .7rem;
    background: rgba(var(--accent-color), 1);
    border-radius: 3rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
}

.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.align-center {
    max-width: 1200px;
    margin: 0 auto;
}

.card-template {
    background: rgb(var(--main-color));
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.card-3d-effect {
    box-shadow: var(--box-shadow);
    transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    overflow: hidden;
}

.card-3d-effect:hover {
    box-shadow: 20px 20px 50px rgba(0, 0, 0, .2);
}

.toastnotify .vh {
    font-family: 'Heebo', sans-serif !important;
    border-radius: 3rem;
}
.toastnotify .bAq {
    display: flex;
    align-items: center;
    margin: 5px 0;
    margin-right: 24px;
}

.toastnotify-icon {
    border-right: 1px solid rgba(255, 255, 255, .8);
    margin-right: 10px;
    font-size: 1rem;
    padding: 0px 10px;
    cursor: default;
}