﻿:root {
    --main-color: #ffc239;
    --black-color: #57585b;
    --title-color: #7f8fa4;
    --blue-color: #66a8de;
    --dark-blue: #17284D;
    --gray-color: #edebeb;
    --blur-text-color: #a0a0a0;
    --red: #ed1c24;
}

* {
    margin: 0;
    box-sizing: border-box;
    /*padding: 0;*/
    font-family: Rubik;
}

::-webkit-scrollbar {
    width: .5rem;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--gray-color);
    border-radius: .5rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--title-color);
    border-radius: .5rem;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--title-color);
    }

.d-none {
    display: none;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

.center-horizontal {
    margin: 0 auto !important;
}

.gte-form-input .form__icon {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    color: var(--black-color);
}

.gte-form-input .show-password {
    position: absolute;
    top: 1.1rem;
    right: 1rem;
    color: var(--black-color);
    cursor:pointer;
}

.gte-form-input .label-error {
    color: var(--red);
    animation-name: showLabel;
    animation-duration: 1s;
}

.gte-form-upload .show-preview {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    color: var(--black-color);
    cursor: pointer;
}

@keyframes showLabel {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gte-input {
    background: #fbfbfb 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 2px #00000029;
    border: 1px solid var(--gray-color);
    border-radius: 5px !important;
    opacity: 1;
    padding: 0px 0.5rem;
    padding-left: 3rem;
    color: var(--blur-text-color);
    font-size: 14px;
}

.gte-input--l {
    height: 3rem;
}

.gte-input--m {
    height: 2.5rem;
}

.gte-input--s {
    height: 2.1rem;
}

.gte-input::placeholder {
    color: var(--blur-text-color);
}

.gte-input--full-width {
    flex: 1;
}

.gte-input:focus {
    border-color: #999999;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gte-button {
    box-shadow: 0px 2px 2px #00000029;
    border-radius: 5px !important;
    color: white;
    text-transform: uppercase;
    border-width: 0;
    padding: 0 0.5rem;
    outline: none !important;
    background-image: none !important;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    padding: 0.5rem 0;
    cursor: pointer;
    background: var(--main-color)
}

    .gte-button:hover {
        opacity: 0.7;
    }

.btn-yellow {
    background-color: var(--main-color);
}

.font-bold {
    font-weight: bold;
}

.bold-500 {
    font-weight: 500;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-20 {
    font-size: 20px;
}

.blur-text {
    color: var(--blur-text-color);
}

.blue-text {
    color: var(--blue-color);
}

.gte-icon {
    font-size: 1.3rem !important;
    color: var(--title-color);
}

.icon-15 {
    font-size: 1.5rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.main-toast {
    top: 4.3rem;
    right: .5rem;
    font-size: 14px;
}

.pre-load-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    opacity: 0.7;
    z-index: 9999;
    display: none;
}

.pre-load {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
}

.notification {
    background-color: transparent;
    color: white;
    text-decoration: none;
    padding: 0px;
    position: relative;
    display: inline-block;
}

    .notification:hover {
        background: #c6c5c5;
    }

    .notification .badge {
        position: absolute;
        top: -10px;
        right: -10px;
        border-radius: 50%;
        background: red;
        color: white;
    }

.pre-load div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid gray;
    border-radius: 50%;
    animation: pre-load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: gray transparent transparent transparent;
}

    .pre-load div:nth-child(1) {
        animation-delay: -0.45s;
    }

    .pre-load div:nth-child(2) {
        animation-delay: -0.3s;
    }

    .pre-load div:nth-child(3) {
        animation-delay: -0.15s;
    }

@keyframes pre-load {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sd--pre-load-wrap {
    width: 70%;
    opacity: 1;
    border: 1px dashed lightgray;
    border-radius: .5rem;
    top: .25rem;
    bottom: .5rem;
}

.sd--pre-load-wrap-full {
    width: 100%;
    height: 100%;
    opacity: 1;
    border: 1px dashed lightgray;
    border-radius: .5rem;
}

.sd--pre-load {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin: auto;
    top: -10px;
}

    .sd--pre-load div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 20px;
        height: 20px;
        margin: 8px;
        border: 8px solid gray;
        border-radius: 50%;
        animation: pre-load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: gray transparent transparent transparent;
    }

.pre-load div:nth-child(1) {
    animation-delay: -0.45s;
}

.pre-load div:nth-child(2) {
    animation-delay: -0.3s;
}

.pre-load div:nth-child(3) {
    animation-delay: -0.15s;
}
