:root {
    --bg-color1: #181a25;
    --bg-color2: #1e2939;
    --bg-color3: #071b41;
    --text1: #e1e3e4;
    --text-light: #fffffe;
    --bg-dark: #08090c;
    --text-dark: #652e06;

    --sun-bg-color1: #ffda50;
    --sun-bg-color2: #f6bd39;
}


.text-dark {
    color: var(--text-dark) !important;
}

.text-color-1{
    color: var(--text1) !important;
}
.pointer {
    cursor: pointer;
}

.border-custom {
    border-color: var(--bg-color2) !important;

}

html, body {
    /*--bg-color1: #ebe103;
    --bg-color2: #1ca65b;*/

    background: linear-gradient(135deg, var(--bg-color1) 0%, var(--bg-color2) 43%, var(--bg-color2) 80%, var(--bg-color1) 100%);
    height: 100%;
    color: var(--text1);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;

    padding: 0px;
    font-size: 1em;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-color1);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bg-color2);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--text1);
}

.noselect {
    -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 */
}

span {
    -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 */
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=search], input[type=email], input[type=url], select, textarea {
    background: var(--bg-color2) !important;
    border-color: var(--bg-color2) !important;
    border-radius: 8px !important;
    color: white !important;
    height: 30px !important;

}

.icon-hover {
    color: var(--text1) !important;
    transition: all ease-in-out 300ms;
    z-index: 10;
    cursor: pointer;
    margin: 2px;
    padding: 3px;
}


.icon-hover:hover {
    color: var(--text-light) !important;
    background: var(--bg-color2);
    border-radius: 100px;
}

.mini-ico {
    font-size: 1.2em;
    transform: translate(-3px, 3px);
}

@keyframes tadum {
    0% {
        opacity: 0;
        transform: scaleX(1)
    }

    10%, 20% {
        opacity: 1;
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%, 60%, 80% {

        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {

        transform: scaleX(1)
    }
}

.animate__tadum {
    animation-duration: 500ms;
    animation-name: tadum;
    animation-fill-mode: both;
}

@keyframes pulser {
    0% {
        opacity: 0;
        transform: scaleX(1);
        filter: drop-shadow(0px 0px 0px red);
    }

    10%, 20% {
        opacity: 1;
        transform: scale3d(.9, .9, .9) rotate(-3deg);
        filter: drop-shadow(10px 10px 10px red);
    }

    30%, 50%, 70%, 90% {
        filter: drop-shadow(10px 10px 0px red);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);

    }

    40%, 60%, 80% {
        filter: drop-shadow(-10px -10px 0px red);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);

    }

    to {
        filter: drop-shadow(0px 0px 0px red);
        transform: scaleX(1);

    }
}

.animate__pulse2 {
    animation-duration: 700ms;
    animation-name: pulser;
    animation-fill-mode: both;
}

.h1 {
    font-size: 1.2em;
}
.text-shadow{
    text-shadow: 0px 0px 10px color-mix(in srgb,var(--text-dark),70% transparent);
}