﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */





/*
a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}
*/
/* Provide sufficient contrast against white background */
/*
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}
*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link, .dropdown-item.active {
    color: #fff;
    background-color: #FF9900;
    border-color: #1861ac; /* Default Value */
}

.btn.btn-primary:focus {
    background-color: #9c9c9c !important;
}

.alert{
    padding: 15px !important;
}

main{
    padding: 20px 0;
}


/* Sticky footer styles
-------------------------------------------------- */

html {
  position: relative;
  min-height: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/*

html{
    position: relative;
}
body{
    min-height: 500px;
}

footer{
    bottom:0;
}

.footer-extra{
    display: block;
    min-height: 70px;
}
    */


.select2-container--default .select2-results > .select2-results__options {
    max-height: 400px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ff9900;
}
button.select2-selection__choice__remove{
    margin-top: auto !important;
}



.custom-checkbox {
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

    .custom-checkbox > input[type="checkbox"] {
        display: none;
    }

    .custom-checkbox > label:nth-child(2) {
        cursor: pointer;
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 2px;
        border: 1px solid #d9d9d9;
        overflow: hidden;
        color: transparent;
        user-select: none;
    }

    .custom-checkbox > input[type="checkbox"]:checked + label:nth-child(2)::after {
        opacity: 1;
        animation: ease-in-out custom-checkbox 350ms;
        width: 15px;
        height: 28px;
        top: 3px;
    }

    .custom-checkbox > label:nth-child(2)::after {
        opacity: 0;
        content: "";
        position: absolute;
        left: 12px;
        transform: rotate(45deg);
        border-bottom: 4px solid #404040;
        border-right: 4px solid #404040;
    }

    .custom-checkbox > label:nth-child(3) {
        cursor: pointer;
        bottom: 0;
        top: 0;
        position: absolute;
        padding-left: 15px;
        line-height: 40px;
    }

@keyframes custom-checkbox {
    0% {
        opacity: 0;
        width: 0px;
        height: 0px;
        top: 20px;
    }

    30% {
        opacity: 1;
        width: 15px;
        height: 0px;
    }

    100% {
        height: 28px;
        top: 3px;
    }
}