/* General */
body {
    background-color: #272727;
}

pre {
    background-color: #272727;
    color: #ffffff;
    font-size: 16px
}

h1, h2, h3, h4 {
    color: #ffffff;
    font-family: "Fjalla One";
}

.button, .button:focus {
    border-width: 2px;
    border-color: rgb(255, 126, 20);
    background-color: rgba(0,0,0,0);
    font-family: "Oxygen";
    color: rgb(255, 126, 20);
    font-size: 24px;
    width: 100%;
}

.button:hover {
    background-color: rgb(255, 126, 20);
    color: #ffffff;
    font-weight: bold;
}

table, p, label, .content{
    color: #ffffff;
    font-family: "Oxygen";
    font-size: 16px
}

input[type=text]{
    color: #ffffff;
    background-color: #000000;
    font-family: "Oxygen";
    font-size: 16px;
    margin-bottom: 10px;
}

input[type=password]{
    color: #ffffff;
    background-color: #000000;
    font-family: "Oxygen";
    font-size: 16px;
    margin-bottom: 10px;
}

.textarea_input{
    color: #ffffff;
    background-color: #000000;
    font-family: "Oxygen";
    font-size: 16px;
    margin-bottom: 10px;
}

.app_question {
    color: rgb(255, 126, 20);
    font-family: "Oxygen";
}

.radio-style input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }
  
.radio-style label {
    display: inline-block;
    background-color: #000000;
    padding: 5px 30px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 4px;
}

.radio-style input[type="radio"]:checked + label {
    background-color: rgb(255, 126, 20);
    border-color: #ffffff;
}

.radio-style input[type="radio"]:hover + label {
    border-color: rgb(255, 126, 20);
}

input[type="checkbox"] {
    display: none;
  }

.checkbox-style label {
    display: inline-block;
    background-color: #000000;
    padding: 5px 30px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 4px;
}

.checkbox-style input[type="checkbox"]:checked + label {
    background-color: rgb(255, 126, 20);
    border-color: #ffffff;
}

.checkbox-style input[type="checkbox"]:hover + label {
    border-color: rgb(255, 126, 20);
}

progress::-webkit-progress-value {
    background-color: rgb(255, 126, 20);
}

progress::-moz-progress-bar {
    background-color: rgb(255, 126, 20);
}

progress::-webkit-progress-bar {
    background-color: rgb(255, 126, 20); /* Change this to the desired background color */
  }

progress {
    width: 50%; /* Adjust the width as needed */
    height: 10px; /* Adjust the height as needed */
    border-radius: 10px;
}
.form-control:focus {
    border-color: rgb(255, 126, 20);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 126, 20, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 126, 20, .6);
}

.black_back {
    background-color: #000000;
    border-width: 2px;
    border-color: #272727;
}

/* Navbar */
.ig_navbar {
    background-color: #101010;
    font-family: "Fjalla One";
}

.ig_navbar .navbar-item {
    float: left;
    height: 84px;
    padding: 30px 30px;
    font-size: 18px;
    line-height: 30px;
}

.ig_navbar .navbar-header {
    float: left;
    height: 100px;
    padding-top: 16px;
    font-size: 36px;
    line-height: 24px;
}

.ig_navbar .navbar-item > li > a{
    font-size: 20px;
    padding-top: 12px;
}

.ig_navbar .navbar-item > li > a,
.ig_navbar .navbar-header > li > a {
    color: #ffffff;
    background-color: transparent;
}
.ig_navbar .navbar-item > li > a:hover,
.ig_navbar .navbar-item > li > a:focus {
    color: #FF7E12;
    background-color: transparent;
}

.ig_dropdown {
    background-color: transparent;
    color:#ffffff;
    font-size: 20px;
}

.ig_dropdown:hover {
    color:#FF7E12
}

.ig_dropdown:focus {
    color:#FF7E12
}

.ig_dropdown_menu {
    background-color: #000000;
    color:#ffffff
}

.ig_dropdown_menu > li > a {
    color: #ffffff;
    font-size: 18px;
    background-color: transparent;
}

.ig_dropdown_menu > li > a:hover,
.ig_dropdown_menu > li > a:focus {
    color: #FF7E12;
    background-color: transparent;
}

/* Tables */
.table_ready {
    background-color: rgba(21, 255, 0, 0.3);
}
.table_indev {
    background-color: rgba(255, 255, 0, 0.3);
}
.table_down {
    background-color: rgba(255, 115, 115, 0.3);
}

/* Misc */
.ig_margin_global {
    margin-left: 60px;
    margin-right: 60px;
}

.ig_margin_bottom {
    margin-bottom: 60px;
}

.ig_margin_top {
    margin-top: 40px;
}

.login {
    background-color: #000000;
    padding: 50px;
    padding-top: 30px;
}

.normal_list > li {
    color: #ffffff;
    font-size: 18px;
    font-family: "Oxygen";
}

.red_list > li {
    color: #ff0000;
    font-size: 18px;
    font-family: "Oxygen";
}


.orange {
    color: #ff7e14;
}