﻿.BerufeFiltern {
    cursor: pointer;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none !important;
}

.slider {
    width: 100%;
    cursor: pointer;
}

.slider {
    -webkit-appearance: none;
    width: calc(100% - 24px);
    height: 5px;
    background: #FFA535;
    border-radius: 4px;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #FFA535;
    cursor: pointer;
    border-color: #FFA535;
    border-radius: 10px;
    box-shadow: #d4d4d4 1px 1px;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #FFA535;
    cursor: pointer;
    border-color: #FFA535;
    border-radius: 10px;
    box-shadow: #d4d4d4 1px 1px;
}


.spinner {
    border: 4px solid #f90; /* Orange border */
    border-top: 4px solid transparent; /* Transparent top border to create a spinner effect */
    border-radius: 50%; /* Make it a circle */
    width: 40px; /* Set the width of the spinner */
    height: 40px; /* Set the height of the spinner */
    animation: spin 2s linear infinite; /* Apply a rotation animation */
    margin: auto;
    margin-top: 16px;
}

.spinner_sm {
    border: 4px solid #f90; /* Orange border */
    border-top: 4px solid transparent; /* Transparent top border to create a spinner effect */
    border-radius: 50%; /* Make it a circle */
    width: 10px; /* Set the width of the spinner */
    height: 10px; /* Set the height of the spinner */
    animation: spin 2s linear infinite; /* Apply a rotation animation */
    margin: 0;
}

.spinnerOverlay {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    background-color: rgb(255, 255, 255, 0);
}

.loadingSpinnerVisible .spinnerOverlay {
    display: block;
}

.spinner-fullscreen {
    position: absolute;
    left: calc(50% - 30px);
    top: 40%;
    transform: translate(-50%,-50%);
    background-color: rgb(255, 255, 255, 0);
    border: 6px solid #f90; /* Orange border */
    border-top: 6px solid transparent; /* Transparent top border to create a spinner effect */
    border-radius: 50%; /* Make it a circle */
    width: 60px; /* Set the width of the spinner */
    height: 60px; /* Set the height of the spinner */
    animation: spin 2s linear infinite; /* Apply a rotation animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a.powered-link {
    font-size: 10px;
    color: #d7b387;
    font-weight: 100;
}

a.powered-link:link {
    color: #d7b387;
}

a.powered-link:visited {
    color: #d7b387;
}

a.powered-link:hover {
    color: #d7b387;
}

a.powered-link:active {
    color: #d7b387;
}
