/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 28 sept. 2018, 10:44:30
    Author     : Mehdi
*/

/* POLICES */
@font-face {
  font-family: "Coolvetica";
  src: url("/fonts/Roboto-Regular.ttf");
}

/* POLICES */
@font-face {
  font-family: "Highway";
  src: url("/fonts/kenyan_coffee_rg.ttf");
}


.pull-left {float:left;}
.pull-right {float:right;}

/* GENERAL */
body {
  font-family: Coolvetica;
}

h1, h2, h3, h4 {font-family: Highway;}

.logo {max-width:150px;}
.logo-sawn {max-width:30px;}

.img-center {
  margin-left:auto;
  margin-right: auto;
}

.bold {font-weight:bold;}
.uppercase {text-transform: uppercase;}

h1 {text-transform: uppercase;}

#navbarMenu {
  float:right;
}
#navbarMenu a {
  color:#fff;
}
#navbarMenu .dropdown-menu {
  background:#0066ff;
  padding:0px;
}
#navbarMenu .dropdown-menu a {
  padding:10px;
}
#navbarMenu .dropdown-menu a:hover {
  color:#000;
}

/* COULEURS */
.bg-success {background:#00cc00;}
.bg-primary {background:#0066ff;}
.bg-info {background:#1ac6ff;}
.bg-warning {background:#ff8000;}
.bg-danger {background:#e60000;}
.bg-light {background:#fff;}
.bg-darkblue {background:#000066;}
.bg-dark {background:#000033 !important;}
.bg-darkcyan {background:#007a99 !important;}

.bg-blue-transparent {
  background:rgba(0,102,204,0.35);
}

.text-success {color:#00cc00;}
.text-primary {color:#0066ff;}
.text-info {color:#1ac6ff;}
.text-warning {color:#ff8000;}
.text-danger {color:#e60000;}
.text-light {color:#fff;}

/* BOUTONS */
.btn-success {
  background:transparent;
  border:2px solid #00cc00;
  color:#00cc00;
}
.btn-success:hover {
  background:#00cc00;
  border-color: #00cc00;
  color:#fff;
}
.btn-primary {
  background:transparent;
  border:2px solid #0066ff;
  color:#0066ff;
}
.btn-primary:hover {
  background:#0066ff;
  border-color: #0066ff;
  color:#fff;
}
.btn-info {
  background:transparent;
  border:2px solid #1ac6ff;
  color:#1ac6ff;
}
.btn-info:hover {
  background:#1ac6ff;
  border-color: #1ac6ff;
  color:#fff;
}
.btn-danger {
  background:transparent;
  border:2px solid #e60000;
  color:#e60000;
}
.btn-danger:hover {
  background:#e60000;
  border-color: #e60000;
  color:#fff;
}
.btn-warning {
  background:transparent;
  border:2px solid #ff8000;
  color:#ff8000;
}
.btn-warning:hover {
  background:#ff8000;
  border-color: #ff8000;
  color:#fff;
}
.btn-default {
  background:transparent;
  border:2px solid #fff;
  color:#fff;
}
.btn-default:hover {
  background:#fff;
  border:2px solid #fff;
  color:#000;
}
.btn {
  border-radius: 50px;
  padding:2px 12px;
  line-height: 2;
}


/* FORMULAIRES */
input[type="text"].with-label,
input[type="date"].with-label,
input[type="file"].with-label,
input[type="url"].with-label,
input[type="password"].with-label,
input[type="number"].with-label,
input[type="email"].with-label,
select.with-label {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

input[type="text"]:disabled,
input[type="date"]:disabled,
input[type="file"]:disabled,
input[type="url"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
select:disabled {
  background:#ddd !important;
}

input[type="text"],
input[type="date"],
input[type="file"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="email"],
select {
  border-radius: 50px !important;
  padding:5px 10px !important;
  color:#000 !important;
  background:#fff !important;
}
input[type="text"]::placeholder,
input[type="file"]::placeholder,
input[type="date"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder {
  color:#595959;
}
.border-radius-left {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}