﻿#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 180px;
    height: 180px;
    margin: -75px 0 0 -75px;
    border: 20px solid #f3f3f3;
    border-radius: 50%;
    border-top: 20px solid #006CB7;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eceffc;
    font-family: sans-serif;
    font-size: 30pt;
}

.terms {
    font-size: 22pt;
    padding-top: 10px;
}

.mainmenubutton {
    display: inline-block;
    padding: 40px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #006CB7;
    font-weight: bold;
    color: black;
    text-align: center;
    vertical-align: central;
    text-decoration: none;
    width: 450px;
}

    .mainmenubutton:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
    }

.myplmfleetmainmenubutton {
    display: inline-block;
    padding: 40px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #006cb7;
    font-weight: bold;
    color: black;
    text-align: center;
    vertical-align: central;
    text-decoration: none;
    width: 450px;
}

    .myplmfleetmainmenubutton:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
        color: black;
    }

.failbutton {
    display: inline-block;
    padding: 40px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #FC6F03;
    font-weight: bold;
    color: black;
    text-align: center;
    vertical-align: central;
    text-decoration: none;
    width: 450px;
}

    .failbutton:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(238, 149, 21, 0.72);
    }

h1, h3 {
    margin: 0px;
}

.btn {
    padding: 8px 20px;
    border-radius: 0;
    overflow: hidden;
    color: #006CB7 !important;
}

    .btn::before {
        content: "";
        background: linear-gradient(120deg, transparent, var(--primary-color), transparent);
        transform: translateX(-100%);
        transition: 0.6s;
    }

    .btn:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
    }

        .btn:hover::before {
            transform: translateX(100%);
        }

.form-input-material {
    --input-default-border-color: black;
    --input-border-bottom-color: black;
}

    .form-input-material input {
        color: black;
    }

.form-input-material:not(focus) label {
    color: black !important;
}


.form-control-material[type=text]:focus:not([readonly]) + label {
    color: #006CB7 !important;
}


.login-form {
    padding: 50px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    color: black;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0.4px 0.4px rgba(128, 128, 128, 0.109), 0 1px 1px rgba(128, 128, 128, 0.155), 0 2.1px 2.1px rgba(128, 128, 128, 0.195), 0 4.4px 4.4px rgba(128, 128, 128, 0.241), 0 12px 12px rgba(128, 128, 128, 0.35);
}

    .login-form h1 {
        margin: 10px 10px 10px 10px;
        align-content: center;
        align-self: center;
    }

    .login-form .form-input-material {
        margin: 75px 10px 10px 10px;
    }

    .login-form .btn {
        width: 100%;
        margin: 18px 10px 10px 10px;
    }

input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

a {
    color: #006CB7;
}

input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 10px;
    background: rgba(0, 0, 0, 0);
    top: 5px;
    left: 10px;
    border: 8px solid #006CB7;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-weight: bolder;
}

input[type="checkbox"] {
    line-height: 2.1ex;
}

    input[type="checkbox"] + label {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        input[type="checkbox"] + label::before {
            content: "";
            display: inline-block;
            vertical-align: -25%;
            height: 2ex;
            width: 2ex;
            background-color: black;
            border: 1px solid rgb(166, 166, 166);
            border-radius: 4px;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.25);
            margin-right: 0.5em;
        }

input[type=date] {
    color: black;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: #006CB7;
    border-radius: 10px;
}

    input[type="date"]::-webkit-calendar-picker-indicator:hover {
        box-shadow: 10px 10px 10px 10px rgba(51, 152, 219, 0.5);
    }

input[type=datetime-local] {
    color: black;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background-color: #006CB7;
    border-radius: 10px;
}

    input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
        box-shadow: 10px 10px 10px 10px rgba(51, 152, 219, 0.5);
    }

label {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    padding: 0px 15px 15px 15px;
    color: black;
}

input[type=radio]:checked + label {
    color: #ccc8ce;
    background: #006CB7;
}

label + input[type=radio] + label {
    border-left: solid 3px #006CB7;
}

.radio-group {
    display: inline-block;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    font-size: 20pt
}

    .radio-group label {
        padding-top: 15px;
        border: solid 3px #006CB7;
        border-radius: 10px;
        height: 60px;
    }

        .radio-group label:hover {
            background: transparent;
            box-shadow: 10px 10px 10px 10px rgba(51, 152, 219, 0.5);
        }

input[type="file"] {
    z-index: -1;
    font-size: 1px;
    visibility: hidden;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #006CB7;
    font-weight: bold;
    color: black;
    margin: 10px;
    width: 650px;
    text-align: center;
    text-decoration: none;
}

    .button:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
    }

.redbutton {
    display: inline-block;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 5px;
    background-color: red;
    font-weight: bold;
    color: black;
    margin: 10px;
    width: 650px;
    text-align: center;
    text-decoration: none;
}

    .redbutton:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0.5);
    }

.smallbutton {
    display: inline-block;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #006CB7;
    font-weight: bold;
    color: black;
    margin: 10px;
    text-align: center;
    text-decoration: none;
}

    .smallbutton:hover {
        background: transparent;
        box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
    }

.image {
    image-orientation: from-image;
    width: 650px;
    margin: 10px 10px 10px 10px;
    border-radius: 5px;
    padding: 12px 18px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-minmax {
    margin-top: 30px;
    width: 608px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #FFFFFF;
}

    .box-minmax span:first-child {
        margin-left: 10px;
    }


.rs-range {
    margin-top: 29px;
    width: 600px;
    -webkit-appearance: none;
}

    .rs-range:focus {
        outline: none;
    }

    .rs-range::-webkit-slider-runnable-track {
        width: 100%;
        height: 1px;
        cursor: pointer;
        box-shadow: none;
        background: #ffffff;
        border-radius: 0px;
        border: 0px solid #010101;
    }

    .rs-range::-webkit-slider-thumb {
        box-shadow: none;
        border: 0px solid #ffffff;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
        height: 42px;
        width: 22px;
        border-radius: 22px;
        background: black;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -20px;
    }

    .rs-range::-moz-focus-outer {
        border: 0;
    }

.rs-label {
    position: relative;
    transform-origin: center center;
    display: block;
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    padding-top: 0px;
    box-sizing: border-box;
    border: 2px solid #fff;
    margin-top: 20px;
    margin-left: -60px;
    padding-bottom: 35px;
    left: attr(value);
    color: #006CB7;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 36px;
}


.rs-labelafter {
    position: relative;
    top: -60px;
    left: attr(value);
    display: block;
    font-size: 20px;
    letter-spacing: 0.07em;
    color: #fff;
    margin: 0;
    padding: 0;
    border: 0;
    width: 120px;
    height: 0px;
    margin-left: -44px;
    text-align: center;
}

#breadcrumb {
    position: relative;
    top: -50px;
    list-style: none;
    display: inline-block;
    padding-bottom: 10px;
    margin: 0px;
}

    #breadcrumb li {
        float: left;
    }

        #breadcrumb li a {
            color: #FFF;
            display: block;
            background: #006CB7;
            text-decoration: none;
            position: relative;
            height: 74px;
            line-height: 74px;
            text-align: center;
            margin-right: 23px;
            font-size: 10pt;
            font-weight: bold;
        }

        #breadcrumb li:nth-child(even) a {
            background-color: #006CB7;
        }

            #breadcrumb li:nth-child(even) a:before {
                border-color: #006CB7;
                border-left-color: transparent;
            }

            #breadcrumb li:nth-child(even) a:after {
                border-left-color: #006CB7;
            }

        #breadcrumb li:first-child a {
            padding-left: 15px;
            -moz-border-radius: 4px 0 0 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px 0 0 4px;
        }

            #breadcrumb li:first-child a:before {
                border: none;
            }

        #breadcrumb li:last-child a {
            padding-right: 15px;
            -moz-border-radius: 0 4px 4px 0;
            -webkit-border-radius: 0;
            border-radius: 0 4px 4px 0;
        }

            #breadcrumb li:last-child a:after {
                border: none;
            }

        #breadcrumb li a:before, #breadcrumb li a:after {
            content: "";
            position: absolute;
            top: 0;
            border: 0 solid #006CB7;
            border-width: 37px 10px;
            width: 0;
            height: 0;
            margin: 0px;
            padding: 0px;
        }

        #breadcrumb li a:before {
            left: -20px;
            border-left-color: transparent;
        }

        #breadcrumb li a:after {
            left: 100%;
            border-color: transparent;
            border-left-color: #006CB7;
        }

        #breadcrumb li a:hover {
            background: transparent;
            box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
        }

            #breadcrumb li a:hover:before {
                border-color: transparent;
                box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
            }

            #breadcrumb li a:hover:after {
                border-color: transparent;
                box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
            }

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 0px #006CB7, 0 0 0px #006CB7, 0 0 0px #006CB7, 0 0 10px #006CB7, 0 0 20px #006CB7;
    }

    to {
        text-shadow: 0 0 0px #fff, 0 0 0px #006CB7, 0 0 0px #006CB7, 0 0 0px #006CB7, 0 0 0px #006CB7, 0 0 10px #006CB7, 0 0 20px #006CB7;
    }
}
/*
h2 {
    margin: 10px;
    color: #fff;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}
    */

.shimmer {
}

.shimmer {
    color: rgba(255,255,255,0.1);
    background: -webkit-gradient(linear, left top, right top, from(#006CB7), to(#006CB7), color-stop(0.5, #006CB7));
    background: -moz-gradient(linear, left top, right top, from(#006CB7), to(#006CB7), color-stop(0.5, #006CB7));
    background: gradient(linear, left top, right top, from(#006CB7), to(#006CB7), color-stop(0.5, #006CB7));
    -webkit-background-size: 125px 100%;
    -moz-background-size: 125px 100%;
    background-size: 125px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-animation-name: shimmer;
    -moz-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: black;
}

@-moz-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-webkit-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-o-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}
