/*
 * Copyright (c) 2022.  Created by Mehmet Kıdıman All Right Reserved. Contact Mail : developbat@gmail.com
 */

.bg-dark, .navbar-dark, .btn-dark{
    background-color: #343a40 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: white !important;
}
.bg-dark a, .bg-dark h3{
    color: white !important;
}
.text-dark {
    color: #343a40 !important;
}

.bg-light, .navbar-light, .btn-light{
    background-color: #efefef !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #888888 !important;
}
.bg-light a, .bg-light h3{
    color: #888888 !important;
}
.text-light{
    color: #888888 !important;
}

.bg-info, .navbar-info, .btn-info{
    background-color: #17a2b8 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: white !important;
}
.bg-info a, .bg-info h3{
    color: white !important;
}

.text-info{
    color: #17a2b8 !important;
}
.bg-secondary, .navbar-secondary, .btn-secondary{
    background-color: #6c757d !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: white !important;
}
.bg-secondary a, .bg-secondary h3{
    color: white !important;
}

.text-secondary{
    color: #6c757d !important;
}
.bg-success, .navbar-success, .btn-success{
    background-color: #28a745 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: white !important;
}
.bg-success a, .bg-success h3{
    color: white !important;
}

.text-success{
    color: #28a745 !important;
}
.bg-primary, .navbar-primary, .btn-primary{
    background-color: #006699 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: white !important;
}
.bg-primary a, .bg-primary h3{
    color:  white !important;
}

.text-primary{
    color: #006699 !important;
}
.bg-white, .navbar-white, .btn-white{
    background-color: #ffffff !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #343a40 !important;
}
.bg-white a, .bg-white h3{
    color: #343a40 !important;
}

.text-white{
   color: #ffffff !important;
}
.bg-default, .navbar-default, .btn-default{
    background-color: #808080 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #FFFFFF !important;
}
.bg-default a, .bg-default h3{
    color: #FFFFFF !important;
}

.text-default{
    color: #808080 !important;
}
.bg-warning, .navbar-warning, btn-warning{
    background-color: #FFAC1C !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #252525 !important;
}
.bg-warning a, .bg-warning h3{
    color: #252525 !important;
}

.text-warning{
    color: #ffc107 !important;
}
.bg-danger, .navbar-danger, .btn-danger{
    background-color: #dc3545 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #FFFFFF !important;
}
.bg-danger a, .bg-danger h3{
    color: #FFFFFF !important;
}

.text-danger{
    color: #dc3545 !important;
}

.bg-apple, .navbar-apple, .btn-apple{
    background-color: #7D7D7D !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #FFFFFF !important;
}
.bg-apple a, .bg-apple h3{
    color: #FFFFFF !important;
}

.text-apple{
    color: #7D7D7D !important;
}
.bg-forphy, .navbar-forphy, .btn-forphy{
    background-color: #001F34 !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: white !important;
}
.bg-forphy a, .bg-forphy h3{
    color:  white !important;
}

.text-forphy{
    color: #001F34 !important;
}


.badge {
    padding: 1px 9px 2px;
    font-size: 12.025px;
    font-weight: bold;
    white-space: nowrap;
    color: #ffffff;
    background-color: #70b9c5;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
  }
  .badge:hover {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
  }
  .badge-error {
    background-color: #b94a48;
  }
  .badge-error:hover {
    background-color: #953b39;
  }
  .badge-warning {
    background-color: #f89406;
  }
  .badge-warning:hover {
    background-color: #c67605;
  }
  .badge-success {
    background-color: #5cc45e;
  }
  .badge-success:hover {
    background-color: #356635;
  }
  .badge-info {
    background-color: #3a87ad;
  }
  .badge-info:hover {
    background-color: #2d6987;
  }
  .badge-inverse {
    background-color: #333333;
  }
  .badge-inverse:hover {
    background-color: #1a1a1a;
  }
  .badge-light {
    background-color: #efefef;
    color: #1a1a1a;
  }
  .badge-light:hover {
    background-color: #ffffff;
    color: #1a1a1a;
  }