﻿input[type=button], input[type=submit] {
    cursor: pointer;
    color: White;
    background-color: MidnightBlue;
    border: none;
    padding: 7px 12px;
    margin: 0;
    height: 35px;
    font-size: 15px;
    font-family: Arial
}

    input[type=button]:hover, input[type=submit]:hover {
        background-color: Red
    }

    input[type=button]:active, input[type=submit]:active {
        transform: translateY(1px)
    }

input[type=text], input[type=password], input[type=email], input[type=date] {
    width: 220px;
    padding: 6px;
    margin: 0;
    font-size: 15px;
    background-color: Beige;
    border: none;
    font-family: Arial
}

textarea {
    width: 290px;
    height: 80px;
    padding: 6px;
    margin: 0;
    font-size: 15px;
    background-color: Beige;
    border: none;
    font-family: Arial
}

.loader_large {
    border: 4px solid Gainsboro;
    border-radius: 50%;
    border-top: 4px solid Red;
    width: 17px;
    height: 17px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader_small {
    border: 4px solid Gainsboro;
    border-radius: 50%;
    border-top: 4px solid Red;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader_tiny {
    border: 3px solid Gainsboro;
    border-radius: 50%;
    border-top: 3px solid Red;
    width: 12px;
    height: 12px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s 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);
    }
}

.custom-select {
    position: relative;
    text-align: left;
    font-size: 14px;
    font-family: Arial;
}

    .custom-select select {
        display: none
    }

.select-selected:hover {
    background-color: SeaGreen
}

.select-selected {
    background-color: Green
}

    .select-selected:after {
        position: absolute;
        content: '';
        top: 11px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: White transparent transparent transparent
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent White transparent;
        top: 5px
    }

.select-items div, .select-selected {
    color: White;
    padding: 7px 0 6px 8px;
    cursor: pointer;
    user-select: none
}

.select-items {
    position: absolute;
    background-color: SeaGreen;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.2)
}

.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 230px;
        background-color: Black;
        color: White;
        text-align: left;
        border-radius: 5px;
        padding: 10px;
        /* Position the tooltip */
        position: absolute;
        margin-top: 20px;
        margin-left: -100px;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.5s;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

/* Let's get this party started */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(0,0,0,1);
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0);
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(0,0,0,0);
    }

.checkmark {
    position: absolute;
    margin-left: -6px;
    height: 15px;
    width: 15px;
    border: 1px solid Black
}

    .checkmark:after {
        content: '';
        position: absolute;
        display: none
    }

.container {
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: -10px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0
    }

    .container:hover input ~ .checkmark {
        border: 1px solid Red
    }

    .container input:checked ~ .checkmark {
        background-color: transparent
    }

        .container input:checked ~ .checkmark:after {
            display: block
        }

    .container .checkmark:after {
        left: 7px;
        top: -8px;
        width: 4px;
        height: 18px;
        border: solid Red;
        border-width: 0 4px 4px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }
