﻿/*-----NavBar-----*/

.bg-black {
    background-color: #201b19 !important;
}

.text-orange {
    color: #fe8b10 !important;
}

.dropdown-menu {
    border: 1px solid #201b19 !important;
}

.navbar-light .navbar-brand {
    color: #fe8b10 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #fe8b10 !important;
}

.dropdown-toggle:focus {
    box-shadow: 0 0 12px #fe8b10 !important;
}

li.dropdown-item {
    background-color: #201b19 !important;
    border-color: #201b19 !important;
    color: #fe8b10 !important;
}

.dropdown-item:hover {
    background-color: #fe8b10 !important;
    border-color: #fe8b10 !important;
    color: #201b19 !important;
}

li.dropdown-item:hover a {
    background-color: #fe8b10 !important;
    border-color: #fe8b10 !important;
    color: #201b19 !important;
}

.dropdown-item:focus {
    color: #fe8b10 !important;
    background-color: #201b19 !important;
    border-color: #201b19 !important;
}

/*-----NavBar-----*/

/*-----Multi Level Dropdown-----*/

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }

/*-----Multi Level Dropdown-----*/

/*-----inputs-----*/

.form-control:focus {
    border-color: #fe8b10 !important;
    box-shadow: 0 0 15px #fe8b10 !important;
}

.select2-container *:focus {
    border: 1px solid #fe8b10 !important;
    box-shadow: 0 0 15px #fe8b10 !important;
    outline: none;
}

/*-----inputs-----*/

/*-----Buttons-----*/

.btn-create {
    color: #fe8b10 !important;
    background-color: #201b19 !important;
    border-color: #201b19 !important;
}

.btn-create-inverse {
    color: #201b19 !important;
    background-color: #fe8b10 !important;
    border-color: #fe8b10 !important;
}

.fa-plus {
    color: #fe8b10 !important;
}

    .fa-plus:hover {
        color: #201b19 !important;
    }

.fa-times-circle {
    color: #201b19 !important;
}

    .fa-times-circle:hover {
        color: #fe8b10 !important;
    }
/*-----Buttons-----*/

/*----Fixed Table Headers-----*/

.table-fixed thead {
    width: 100%;
}

.table-fixed tbody {
    height: 230px;
    overflow-y: auto;
    width: 100%;
}

.table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
    display: block;
}

.table-fixed tbody td, .table-fixed thead > tr > th {
   float: left;
   border-bottom-width: 0;
}

/*----Fixed Table Headers-----*/

/*----Toggle Button-----*/
.switch {
    position: relative;
    display: block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #fe8b10;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


/*----Toggle Button-----*/
