﻿/* TODO: minifier le css */
@font-face {
    font-family: 'Roboto';
    font-weight: bold;
    src: url(../fonts/Roboto/Roboto-Bold.ttf);
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: bold;
    src: url(../fonts/Roboto/Roboto-BoldItalic.ttf);
}

@font-face {
    font-family: 'Roboto';
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'Roboto';
    font-weight: 300;
    src: url(../fonts/Roboto/Roboto-Light.ttf);
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Roboto/Roboto-LightItalic.ttf);
}

@font-face {
    font-family: 'Roboto Condensed';
    font-stretch: condensed;
    font-weight: bold;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf);
}

@font-face {
    font-family: 'Roboto Condensed';
    font-stretch: condensed;
    font-style: italic;
    font-weight: bold;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-BoldItalic.ttf);
}

@font-face {
    font-family: 'Roboto Condensed';
    font-stretch: condensed;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf);
}

@font-face {
    font-family: 'Roboto Condensed';
    font-stretch: condensed;
    font-weight: 300;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf);
}

@font-face {
    font-family: 'Roboto Condensed';
    font-stretch: condensed;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-LightItalic.ttf);
}

@font-face {
    font-family: 'Curved';
    src: url(../fonts/CurvedFont/curved.TTF);
}

html {
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    position: relative;
    margin: 0;
    min-height: 100%;
    font-family: Roboto;
    background-color: white;
}

/* Header and Footer */


header {
    margin-bottom: 50px;
}

header .header-content {
    width: 100%;
    height: 98px;
    background: white;
    position: relative;
}

header .header-content .wrapper {
    /*padding-left: 100px;*/
        /*margin-left: 30%;*/
}

header .header-content .slogan {
    font-size: x-large;
    margin-left: 230px;
    padding-top:17px;
    color: #456067;
    font-family: 'Roboto Condensed';
    font-weight: 300;
}

header .header-content .header-decoration {
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 100%;
    height: 50px;
    background: #238e47;
    z-index: -3;
}

header .header-content .header-decoration.left {
    -webkit-transform: translate(-50%, 0) rotate(-0.9deg);
    -ms-transform: translate(-50%, 0) rotate(-0.9deg);
    transform: translate(-50%, 0) rotate(-0.9deg);
}

header .header-content .header-decoration.right {
    -webkit-transform: translate(-50%, 0) rotate(0.9deg);
    -ms-transform: translate(-50%, 0) rotate(0.9deg);
    transform: translate(-50%, 0) rotate(0.9deg);
}

header .header-content .logo-box {
    position: relative;
}

header .header-content .logo-box .logo {
    position: absolute;
    top: -13px;
    left: -41px;
    width: 217px;
    height: 149px;
    padding: 0;
    margin: 0;
    z-index: 101;
    padding: 25px 0 0 60px;
    background: url("../images/bg/logo-box.png") no-repeat;
}

header .header-content .logo-box .logo img {
    display: block;
    width: 100px;
    height: auto;
}

header .logout {
    background: url("../images/bg/bg-search.png") no-repeat;
    width: 74px;
    height: 89px;
    margin-left:50px;
    color: white;
    -webkit-transition: all 1s ease; /* Safari */
    transition: all 1s ease;
}

header .logout:hover {
    color: #ffd537;
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}

header .logout span {
    left: 32px;
    top: 38px;
    font-size: 20px;
}

footer {
    clear: both;
    width: 100%;
    background: #1C5168;
    color: #fff;
    position: absolute;
    z-index: 1;
    min-height: 80px;
    bottom: 0;
}

footer a {
    color: white;
}

footer a:hover {
    text-decoration: none;
    color: #afcb37;
}

footer::after,
footer::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    background: #1C5168;
    height: 50px;
    -webkit-transform: translate(-50%, 0) rotate(-1.5deg);
    -ms-transform: translate(-50%, 0) rotate(-1.5deg);
    transform: translate(-50%, 0) rotate(-1.5deg);
    z-index: -1;
    content: '';
}

footer::after {
    -webkit-transform: translate(-50%, 0) rotate(1.5deg);
    -ms-transform: translate(-50%, 0) rotate(1.5deg);
    transform: translate(-50%, 0) rotate(1.5deg);
}

footer .footer-content {
    padding: 25px 10px 19px;
}

footer .footer-decoration {
    position: absolute;
    top: -2px;
    left: 50%;
    width: 100%;
    background: #238e47;
    height: 20px;
    z-index: -2;
}

footer .footer-decoration.left {
    -webkit-transform: translate(-50%, 0) rotate(-2.2deg);
    -ms-transform: translate(-50%, 0) rotate(-2.2deg);
    transform: translate(-50%, 0) rotate(-2.2deg);
}

footer .footer-decoration.right {
    -webkit-transform: translate(-50%, 0) rotate(2.2deg);
    -ms-transform: translate(-50%, 0) rotate(2.2deg);
    transform: translate(-50%, 0) rotate(2.2deg);
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.main-content {
    background-color: white;
    padding-top:20px;
    padding-bottom: 150px;
}

.heading-text {
    margin: 0;
    background: url("../images/bg/decor-03.png");
    color: #00a2af;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.heading-text h1 {
    font-family: 'Roboto Condensed';
    font-size: 3.5em;
    color: #1B749B;
    padding: 0;
    margin: 19px 0;
    font-weight: 400;
}

.heading-text-shadow::before,
.heading-text-shadow::after {
    position: absolute;
    content: "";
    left: 10px;
    width: 55%;
    top: -56px;
    height: 30px;
    box-shadow: 0 35px 10px rgba(0, 0, 0, 0.15);
    -webkit-transform: rotate(-1.3deg);
    transform: rotate(-1.3deg);
}

.heading-text-shadow::after {
    -webkit-transform: rotate(1.3deg);
    transform: rotate(1.3deg);
    right: 10px;
    left: auto;
}

#total-elements, 
.total-elements {
    display: none;
}

#total-elements .badge,
.total-elements .badge {
    font-size: medium;
    background-color: #456067;
}

.total-elements .badge {
    font-size: small;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

#auth-page  {
    margin-top:100px;
}

#auth-page .thumbnail {
    background-color: white;
}

#auth-page .thumbnail .logo {
    max-height: 120px;
    margin: 15px auto;
}

#auth-page .thumbnail .slogan {
    color: #709613;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input,
select,
textarea {
    max-width: 280px;
}*/
/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* Style des fenêtres modales */
.modal-header {
    padding: 25px 40px;
    background-color: #d9534f;
}

.modal-header h4 {
    color:white;
}

.modal-body p {
    padding: 15px;
    font-size: larger;
}

/* Style pour le menu principal (sidemenu) */
.navigation-principale .list-group a {
    font-family: 'roboto condensed', sans-serif;
    font-size: medium;
    line-height: 1.2;
    color: #456067;
    text-decoration: none;
    display: block;
    padding: 9px 13px 8px;
    text-transform: uppercase;
    font-weight: 300;
}

.navigation-principale .list-group .item-name {
    padding-left: 5px;
    font-weight: bold;
}

.navigation-principale .list-group-item .sub-item {
    font-weight: bold;
}

.navigation-principale .list-group .menu-ico-collapse {
    font-size: x-small;
}

.navigation-principale .list-group a.sub-item {
    font-size: small;
}

.navigation-principale a.list-group-item:hover,
.navigation-principale a.list-group-item:focus {
    background-color: #E5EDC4;
}

.navigation-principale .list-group-item.active,
.navigation-principale .list-group-item.active:hover,
.navigation-principale .list-group-item.active:focus {
    color: white;
    background-color: #00A2AF;
    border-color: #00A2AF;
}


#secondaryNavContainer {
    margin: 0 auto 14px;
}

.breadcrumb {
    background-color: transparent;
    font-size: 1.1em;
    font-family: 'roboto condensed', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0 2px;
}

.breadcrumb > li {
    text-transform: uppercase;
    font-size: small;
}

.breadcrumb > li a {
    color: #00a2af;
}

.breadcrumb > .active {
    color: #456067;
}

.breadcrumb > li + li::before {
    color: #00a2af;
}

/* Pour afficher correctement le système de grille avec les fenêtres Kendo. */
/* http://docs.telerik.com/kendo-ui/third-party/using-kendo-with-twitter-bootstrap#nest-widgets-and-bootstrap-grid-layout */
/* reset everything to the default box model */
*, :before, :after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* set a border-box model only to elements that need it */
.form-control, /* if this class is applied to a Kendo UI widget, its layout may change */
.container,
.container-fluid,
.row,
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1,
.col-xs-2, .col-sm-2, .col-md-2, .col-lg-2,
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3,
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4,
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5,
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7,
.col-xs-8, .col-sm-8, .col-md-8, .col-lg-8,
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9,
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11,
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Animation de chargement */
.loading-animation {
    padding:10px;
    display:none;
    z-index:10;
}

.loading-animation .loader-container {
    width: 100%;
    height: 72px;
    position: relative;
}

.loading-animation .inner.spinner {
    width: 50px;
    height: 50px;
    margin-left: -31px;
    top: 12px;
    border-top-color: #00a2af;
    animation-delay: 1.5s;
}

.loading-animation .spinner {
    border-top: 6px solid #a1d61e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-left: -36px;
    position: absolute;
    top: 6px;
    left: 50%;
    animation: spin 2s ease-in-out infinite;
}

.loading-animation .outter.spinner {
    width: 70px;
    height: 70px;
    margin-left: -41px;
    top: 0;
    border-top-color: #9f057d;
    animation-delay: 1s;
}

.loading-animation .loading-text {
    color: #a19f9f;
    font-size: large;
    text-align: center;
    line-height: 20px;
    margin: 20px auto 0;
    width: 100%;
}

.loading-animation.adaptable {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    width: 100%;
    padding: 0;
    height: 100%;
}

.loading-animation.adaptable .loader-container {
    height: 100%;
}

.loading-animation.adaptable .spinner-container {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    top: 50%;
    margin-top: -18px;
}

.loading-animation.adaptable .spinner-container .outter.spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: auto;
    border-width: .25em;
    left: auto;
}

.loading-animation.adaptable .spinner-container .middle.spinner {
    position: absolute;
    width: 86%;
    height: 86%;
    margin-left: auto;
    border-width: .25em;
    left: 7%;
    top: .3em;
}

.loading-animation.adaptable .spinner-container .inner.spinner {
    position: absolute;
    width: 71%;
    height: 71%;
    margin-left: auto;
    border-width: .25em;
    left: 15.5%;
    top: .6em;
}

.loading-animation.adaptable .loading-text {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Template pour les exports PDF depuis les grilles. */
.pdf-template {
    font-family: "DejaVu Sans", "Arial", sans-serif;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pdf-template .header {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    border-bottom: 1px solid #888;
    color: #888;
}

.pdf-template .footer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-top: 1px solid #888;
    text-align: center;
    color: #888;
}

.pdf-template .watermark {
    font-weight: bold;
    font-size: 400%;
    text-align: center;
    margin-top: 30%;
    color: #aaaaaa;
    opacity: 0.1;
    transform: rotate(-35deg) scale(1.7, 1.5);
}

/* Divers. */
.display-none {
    display:none;
}

.display-block {
    display: block !important;
}

.required:after {
    content: " *";
    color: red;
}

/* Coloration des fenêtres Kendo Window */
.k-window, .k-window.k-state-focused {
    border-color: #9F057D;
}

.k-window-titlebar.k-header {
    color: #ffffff;
    border-color: #00A2AF;
    background-color: #00A2AF;
}

.k-window h3 {
    color: #00A2AF;
}

.k-window h3 .glyphicon {
    color: #ffd537;
}

/* Pour les thumbnails de la page d'accueil */
.thumbnail-nobg {
    background-color:white;
    background:transparent;
}

/* Un petit air de Bootstrap 4 pour les KendoWindow */
.w-100 { width: 100%; }

.list-group-item.sub-item.selected {
    background-color: #E5EDC4;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #456067;
    background-color: #E5EDC4;
}

/*Modification du header des grilles kendo */
.k-filter-row th, .k-grid-header th.k-header {
    border-bottom-width: 4px;
    background-color: #dedede;
    border-color: #cdcdcd;
}

/* Surlignage des lignes des grilles kendo */
.k-grid td.k-state-selected:hover, .k-grid tr:hover {
    color: #9c158f;
    background-color: #FAE6FC;
}

.k-draghandle.k-state-selected:hover,
.k-ghost-splitbar-horizontal,
.k-ghost-splitbar-vertical,
.k-list > .k-state-highlight,
.k-list > .k-state-selected,
.k-marquee-color,
.k-panel > .k-state-selected,
.k-scheduler .k-scheduler-toolbar .k-state-selected,
.k-scheduler .k-today.k-state-selected,
.k-state-selected,
.k-state-selected:link,
.k-state-selected:visited {
    color: white;
    background-color: #00A2AF;
    border-color: #00A2AF;
}

.k-button.k-state-focused, 
.k-button.k-state-hover, 
.k-button:focus, 
.k-button:hover, 
.k-draghandle:hover, 
.k-listbox .k-item:hover:not(.k-state-disabled), 
.k-other-month.k-state-hover .k-link, 
.k-pager-wrap .k-link:hover, 
.k-split-button:focus, 
.k-state-hover, 
.k-state-hover:hover, 
.k-textbox:hover, 
div.k-filebrowser-dropzone em {
    background-image: none;
}

    .k-dropdown .k-state-focused,
    .k-filebrowser-dropzone,
    .k-list > .k-state-hover,
    .k-mobile-list .k-edit-label.k-check:active,
    .k-mobile-list .k-item > .k-label:active,
    .k-mobile-list .k-item > .k-link:active,
    .k-mobile-list .k-recur-view .k-check:active,
    .k-pager-wrap .k-link:hover,
    .k-scheduler .k-scheduler-toolbar ul li.k-state-hover,
    .k-splitbar-horizontal-hover:hover,
    .k-splitbar-vertical-hover:hover,
    .k-state-hover,
    .k-state-hover:hover {
        color: #000;
        background-color: #72c5ee;
        border-color: #72c5ee;
    }

/* Pour la petite croix de suppression d'une photo uploadé */
.remove-photo {
    color: red;
    position: absolute;
    right: 5px;
    top: 15px;
    background-color: white;
    border-radius: 12px;
    padding: 2px;
    border: 1px solid red;
    opacity: .35;
    display: none;
    transition: all 1s ease;
}

.remove-photo:hover {
    color:darkred;
    border-color: darkred;
}

/* Pour éviter que les icônes empêchent le clic sur les boutons dans lesquels ils sont. */
.glyphicon {
    pointer-events: none;
}

#lost-password {
    display: none;
    font-size: small;
    color: red;
}

/* Pour la page de rapport */
iframe#reports {
    width:100%;
    min-height: 800px;
    border: none;
    background: transparent;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
            display: none;
        }

        /* Style pour la navbar principale */
        .navbar-brand.slogan {
            text-align: center;
            line-height: initial;
            padding-top:10px;
        }
    }

textarea#message {
    height: 70px;
}

/* Map style */

#map, #map-new {
    height: 300px;
    border: 3px solid rgb(159, 5, 125);
}

#map:hover, #map-new:hover {
    cursor: pointer;
}

.mapCircuit {
    height: 80vh !important;
    position: sticky !important;
    top: 0;
    margin-bottom: 100px;
}

.mapCircuit:hover {
    cursor: grab !important;
}

.mapCircuit {
    cursor: grab !important;
}

.mapCircuit .leaflet-right .leaflet-control {
    display: none;
}

/* kendo grid hover */

#liste-items-edit tbody:hover {
    cursor: pointer;
}

/* Preinscription */

.carousel-control.left,
.carousel-control.right {
    background-image: none !important;
    display: inline;
    position: static;
    top: 2vh;
    height: 50px;
    width: 50px;
}

span.glyphicon.glyphicon-chevron-left,
span.glyphicon.glyphicon-chevron-right {
    color: #afcb37;
    position: relative;
    font-size: x-large;
}

.carousel-control.left {
    left: 5vw;
}

.carousel-control.right {
    right: 5vw;
}

.floating-menu {
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 999;
}

#wrapper-preinscription {
    padding: 0;
}

#page-top {
    padding-top: 150px;
}

.flex-item, .list-flex-item {
    transition: all ease-in-out 0.2s;
}

.flex-item {
    display: inline;
    color: #9c158f;
}

.active h3 {
    color: #9c158f;
    opacity: 1;
}

ol {
    list-style: none;
    display: flex !important;
    justify-content: space-around;
    flex-direction: row;
    width: 80vw;
    padding: 0;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 0;
}

li h3 {
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.list-flex-item {
    color: #afcb37;
    cursor: pointer;
}

.list-flex-item:hover {
    color: #9c158f;
}

.list-flex-item.active {
    color: #9c158f;
    opacity: 1;
}

#ok-button {
    font-size: xx-large;
}

h4 {
    text-align: center;
}

.details-header {
    background-color: #9c158f;
    color: white;
    font-weight: bold;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
    margin-bottom: 0;
}

.details-container {
    border: 2px solid #9c158f;
    box-shadow: 0px 0px 15px darkgrey;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
}

#flex-container {
    display: flex;
    justify-content: center;
}

#flex-container input {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    background-color: transparent;
    font-size: xx-large;
    color: #afcb37;
    border: none;
    transition: background-color 0.5s;
    font-family: Roboto;
    text-align: center;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 10px rgba(175, 203, 55, 0.6);
    border: 1px solid #afcb37;
}

.small-size {
    display: none;
}

@media screen and (max-width: 991px) {

    #flex-container input {
        background-color: #afcb37;
        color: white;
    }

    .small-size {
        display: inline;
    }

    .big-size{
        display: none;
    }
}

#flex-container input:hover {
    background-color: #afcb37;
    color: white;
}

#flex-container input:focus {
    outline: none;
}

#flex-container input i {
    position: static;
}

dt, dd {
    text-align: left !important;
}

section {
    padding: 150px 0;
}

#map-section {
    padding-top: 100px;
}

#banner-preinscription {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

a.nav-link.js-scroll-trigger:link {
    text-decoration: inherit;
    color: inherit;
}

a.nav-link.js-scroll-trigger:visited {
    text-decoration: inherit;
    color: inherit;
}

.logo-preinscription {
    top: -60px !important;
    left: -150px !important;
}

.lightgreen-background {
    background-color: rgba(142, 188, 0, 0.8) !important;
}

.k-input {
    color: black !important;
}

.k-dropdown-wrap.k-state-focused,
.k-dropdown .k-state-focused .k-input {
    background-color: white;
    background-image: none;
    color: black;
}

.form-control {
    color: black;
}

.info-preinscription {
    font-size: initial;
}

.info-div {
    padding-bottom: 10px;
    padding-top: 10px;
}

.glyphicon-info-sign, .glyphicon-globe {
    font-size: xx-large;
    color: #afcb37;
}

#top-button, #map-button {
    position: fixed;
    top: 128px;
    right: 20px;
    display: inline;
    height: 34px;
    z-index: 999;
    width: 34px;
    border-radius: 50%;
    background-color: white;
}

#map-button {
    top: 168px;
}

#top-button:hover, #map-button:hover {
    cursor: pointer;
}

#info {
    padding-top: 50px;
    padding-bottom: 150px;
}

#info h4 {
    font-weight: bold;
    color: #9c158f;
}

#info ul {
    list-style: none;
}

#info li {
    padding-left: 1em;
    text-indent: -.7em;
}

#info li::before {
    content: "• ";
    color: #9c158f;
}

.logobox-preinscription {
    flex-grow: 1;
    transition: flex-grow 1s linear;
}

@media screen and (max-width: 1070px) {
    .logobox-preinscription {
        display: none;
        flex-grow: 0.00001;
    }
}

.awesome-marker i {
    font-size: 18px;
    margin-top: 8px;
}

.leaflet-top, .leaflet-bottom {
    z-index: 998 !important;
}

#map-preinscription {
    border: 1px solid #9c158f;
    box-shadow: -2px -2px 20px darkgrey;
    border-radius: 7px;
    /*border-left: 5px solid #9c158f;
    border-right: 5px solid #9c158f;
    border-radius: 50% / 10%;*/
}

.shadow-form {
    box-shadow: -2px -2px 20px darkgrey;
    border-radius: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    background-color: #f5f5f5;
}

.curved-font {
    font-family: Curved, Roboto, sans-serif;
}

.form-control:focus {
    border-color: #afcb37;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 213, 55, 0.6);
}

.k-button.k-button-icontext.k-grid-Modifier,
.k-button.k-button-icontext.k-grid-delete {
    width: 100px;
}

.k-button.k-button-icontext.k-grid-delete {
    margin-bottom: 1px;
}

.pictureBox1 {
    background-size: 100% 100% !important;
}

#reportViewer1 {
    border: 1px solid lightgrey;
    border-right: 1px solid lightgrey;
    border-radius: 10px;
    height: 60vh;
    position: absolute;
    left: 5px;
    right: 5px;
    top: 50px;
    bottom: 5px;
    overflow: hidden;
    font-family: Roboto, Verdana, Arial;
}

input[data-role="telerik_ReportViewer_PageNumberInput"] {
    border-radius: 6px;
    border: 1px solid lightgrey;
    padding-left: 2px;
}

input[data-role="telerik_ReportViewer_PageNumberInput"]:hover,
.k-state-hover input {
    color: black;
}

input[data-role="telerik_ReportViewer_PageNumberInput"]:focus {
    outline: none;
}

.table1 {
    border-radius: 10px;
}

.trv-parameters-area-footer {
    padding-bottom: 5px;
    border-top: 1px solid lightgrey;
    background-color: white;
}

.k-button.trv-parameters-area-preview-button {
    color: #afcb37;
    font-weight: 600;
    border: 1px solid #afcb37; 
    width: 95%;
}

.k-button.trv-parameters-area-preview-button:focus {
    box-shadow: none !important;
}

.k-button.trv-parameters-area-preview-button:hover {
    color: white;
}

.trv-parameters-area-content:focus {
    outline: none;
}

.trv-parameter-container {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    margin-left: 2.5% !important;
    margin-right: 2.5% !important;
}

.trv-parameter-container span {
    width: 92%;
}

.k-button.k-button-icontext.k-grid-delete:hover {
    background-color: #ED4C67;
    border-color: #ED4C67;
}

#Tableau > div {
    background-color: #00A2AF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin: 0;
    color: white;
}

#Tableau form {
    margin-bottom: 30px;
}

#Tableau label {
    margin-bottom: 0;
}

#Tableau .table {
    border: 2px solid #00A2AF;
    border-collapse: collapse;
}

#Tableau tr:nth-child(even) {
    background-color: #f0f0f0;
}

#Tableau tr:hover {
    background-color: #f6f6f6;
}

#Tableau th, td {
    border-bottom: 1px solid #00A2AF;
}

#Tableau .table > thead > tr > th {
    border-bottom: 2px solid #00A2AF;
}

#Tableau #submit {
    border-radius: 10px;
    background-color: #9c158f;
    font-weight: bold;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-color: #9c158f;
    color: white;
}

#Tableau #submit:focus {
    outline: none;
}

.k-widget.k-dropdown.k-header[aria-owns="Annee_listbox"] > span{
    border-radius: 10px;
    border-radius: 10px;
    border-left-width: 2px;
}

#Tableau .k-widget.k-notification.k-notification-info {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#Tableau .demo-section.k-content {
    background-color: #00A2AF;
}

#Tableau table *:not(input) {
    border-color: #00A2AF;
}

#Tableau input {
    border-radius: 10px;
    padding-left: 10px;
    border-width: 1px;
}

#Tableau input:focus {
    outline: none;
}

div[id^="liste-"] tbody tr {
    cursor: pointer;
}

#liste-items-edit tbody tr {
    cursor: move !important;
}

.wrapper {
    height: 98px !important;
    width: 800px !important;
}

@media screen and (max-width: 1000px) {
    .logo-box.pull-left {
        display: none;
    }

    .wrapper h2 {
        margin-left: 50px !important;
    }
}

@media screen and (max-width: 700px) {
    
    .wrapper h2 {
        margin-left: 20px !important;
    }
}

@media screen and (max-width: 640px) {

    .slogan.pull-left {
        display: none;
    }

    .logout.pull-left {
        position: fixed;
        top: -30px;
        right: -15px;
        background: none;
        transition: none;
        color: #9c158f;
        margin: 0;
        padding: 0;
        z-index: 999;
    }

    .logout.pull-left:hover {
        transform: unset;
    }

    header, .wrapper {
        height: 0 !important;
    }
}

div#spinner {
    display: none;
    margin-top: 10px;
    width: 60px;
    height: 60px;
    background: url(/images/spinner.svg) no-repeat center rgba(255,255,255,0);
    border: none;
    background-size: 100% 100%;
    text-align: center;
    z-index: 2;
    overflow: auto;
}

#wrapper-preinscription {
    width: 100% !important;
}

.arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    margin: 0;
    color: #9c158f;
}

.arrow.bounce:hover {
    cursor: pointer;
    color: #9c158f;
}

.arrow.bounce:hover .fa-arrow-down.fa-2x {
    color: #9c158f;
}

.arrow.bounce {
    padding: 20px;
}

.fa-arrow-down.fa-2x:hover,
.fa-arrow-down.fa-2x:active,
.fa-arrow-down.fa-2x:focus {
    text-decoration: none;
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.k-grid.k-widget {
    overflow: auto;
}

.k-grid-Annee,
.k-grid-Trimestre {
    padding: 0;
    margin: 0;
    border: 0;
}

.k-grid-pdf {
    margin-right: 20px !important;
}

.hr_vertical {
    border: none;
    border-right: 1px solid #FAE6FC;
    height: 100%;
}

.k-edit-cell {
    color: #787878;
}

div[id^="liste"] td {
    cursor: pointer;
}

.k-grid tbody .k-button, .k-ie8 .k-grid tbody button.k-button {
    min-width: 32px;
}

/* Correction pour la lightbox */
.k-overlay {
    z-index: 1002 !important;
}
.k-widget.k-window {
    z-index: 1003 !important;
}