/* Start Dropdown menu*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body{
    font-family: 'Poppins', sans-serif;
}


.title {
    text-align: center;
    font-size: 50px;
    font-family: Arial;
    text-shadow: 2px 2px 4px #000000;

}



.rcorners2 {
    border-radius: 25px;
    border: 2px solid #95a5a6;
    padding: 20px;
    /*width: 200px;*/
    /*height: 150px;*/
}

/**/
.navbar-toggler{
    /*color: #2e194e;*/
    background-color: #2e194e;
}

.tauxColor{
    color: blue;
}

.mybtn{
    /*border-radius: 25px;*/
    /*widht: calc(100% - 2px);*/
    width: 200px;
    margin-right: 3px;
    margin-bottom: 3px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #2e194e;}

/*Start Dropdown menu with hover */
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-submenu {
    position:relative;
    /*display: inline-block;*/
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

/* End Dropdown menu*/


/*Start tooltip*/

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/*End tooltip*/

/* Start Scroll table*/

.dtHorizontalVerticalExampleWrapper {
    max-width: 600px;
    margin: 0 auto;
}
#dtHorizontalVerticalExample th, td {
    white-space: nowrap;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
    bottom: .5em;
}




/* End Scroll table */

/* Start Corner border */

div.wrapper {
    position: relative;
    border: 2px solid #838383;
    margin-top: 20px;
    padding: 20px 10px 10px;
}

div.wrapper label {
    color: white;
    line-height: 20px;
    padding: 0 5px;
    position: absolute;
    background-color: #838383;
    /* Adjust these values to posiytion the title or label */
    top: -10px;
    left: 10px;
}

.disabled {
    pointer-events: none;
}

/* End Corner border*/




/*Start image back*/



/*End image back*/