myModal/*
Theme Name: UQAC
Theme URI: http://pixelomatic.com
Author: pixelomatic team
Author URI: https://www.wphats.com/author/mehedi
Description: UQAC Theme is clean, blog & focused, and designed for clarity. It is simple, straightforward typography is readable on a wide variety of screen sizes. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uqac
*/

.alignleft{
float:left !important;
margin-right:30px !important;
}

.alignright{
float:right !important;
margin-left:25px !important;
}

.aligncenter {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}

.blog-post {
  text-align:center;
  margin-bottom: 40px;
}
.blog-post-img {
  width: 100%;
  float: left;
}
.blog-post-details {
  width:100%;
  float:left;
}
.blog-post-details p {
  font-size:16px;
  line-height:22px;
	text-align:left;
}
.blog-post-img img {
  width: 100%;
  margin-bottom:15px;
}
.blog-post a {
  text-decoration: none !important;
}
.blog-post-title {
  color: #000000;
  font-size:30px;
  line-height:36px;
  font-weight:700;
  margin-top: 0;
}
.blog-post-title:hover {
  color: #5d0e8b;
  text-decoration: none;
}
.btn-blog-more {
  color:#ffffff;
  background:#5d0e8b;
  font-size: 14px !important;
  padding: 10px 20px !important;
  text-decoration: none !important;
  width: auto !important;
  margin:15px 0;
  border-radius:50px;
}
.btn-blog-more:hover {
  color:#ffffff;
  background:#460a69;
}
p.meta {
	text-align:center !important;
  font-size:12px;
  line-height:16px;
}
.widget {
  margin-bottom: 10px;
  padding: 15px;
}
.blog-search-form label {
	width:100%;
  padding-right:60px;
  position:relative;
}
.blog-search-form label::after {
	content:"\f002";
  font-family: FontAwesome;
  position: absolute;
  right: 22px;
  top: 4px;
  z-index: 1;
  font-size: 18px;
  color: #444444;
  font-weight: 300;
}
.btn-blog-search {
	width:60px;
  height:36px;
  background:none;
  position:absolute;
  top:0;
  right:0;
  z-index:11;
  border:1px solid #edf1f2;
  border-top-right-radius:50px;
  border-bottom-right-radius:50px;
  border-left:none;
}
.widget-title {
  color: #000000;
  font-size:24px;
  line-height:28px;
  font-weight:700;
  margin: 0 0 10px 0;
}
.widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.widget ul li {
  position: relative;
  display: block;
  margin-bottom: 7px;
  padding-left: 30px;
}
.widget ul li::before {
  content:"\f054";
  color:#6c6c6c;
  font-family: FontAwesome;
  font-size:12px;
  font-weight: 300;
  position: absolute;
  top: 8px;
  left: 10px;
  transition: all 0.3s;
}
.widget ul li:hover::before,
.widget ul li:hover a {
  color:#5d0e8b;
}
.widget ul li a {
  color: #6c6c6c;
  font-size:16px;
  line-height:16px;
  display: block;
  padding: 7px 0;
  text-decoration: none;
}
.comment-list {
	width:100%;
  float:left;
}
.comment-body {
	float:left;
  margin-top:0;
}
.comment-author .avatar {
	float:left;
}
.comment-metadata {
	float:right;
}
.comment-content {
	float:left;
  width:100%;
}
.comment-content p {
	color:#232323 !important;
}
.comment-body .reply {
	width:100%;
  float:left;
  margin:0;
}
.comment-body .reply a {
	background:#5d0e8b !important;
}
.comment-form input,
.comment-form textarea {
	width:100%;
  padding:4px 10px;
  border:1px solid #5d0e8b;
}
.comment-form input:focus,
.comment-form textarea:focus,
.comment-form input:hover,
.comment-form textarea:hover {
	box-shadow:0 0 2px 1px rgba(93, 14, 139, 0.5) !important;
}
.form-submit .submit {
	background:#5d0e8b !important;
  width:auto;
  border:none !important;
  box-shadow:none !important
}

.blog-single-post .blog-post-img,
.blog-single-post .blog-post-details {
	width:100%;
}
.blog-single-post .blog-post-img img {
	width:100%;
  padding:0;
}

/*---------------blog post--------------*/

.captions p {
    padding: 1px;
    font-size: 14px;
    display: inline;
}
.captions p.current{
	background: #fff ;
	font-weight: 700;
	font-style: italic;
}
.captions p.current p{
color: #000;
}
/**
 * Tooltips
 */

.tooltip {
	position: relative;
}
.tooltip:after {
  position: absolute;
    padding: 2px;
    border: 2px solid #2b3742;
    border-radius: 5px;
    background-color: #2b3742;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    content: attr(data-tooltip);
    min-width: 100px;
    opacity: 0;
    transition: all .2s ease-in-out .25s;
    visibility: hidden;
    z-index: 2;
}
.tooltip:hover:after {
	opacity: 1;
	visibility: visible;
}

/*Tooltip starting positions*/

.tooltip-top:after {
	bottom: 150%;
	left: 0;
}


/*Tooltip final positions*/

.tooltip-top:hover:after {
	bottom: 120%;
}

/**
 * Triangles
 */

.tooltip-top:before {
	content: "";
	display: block;
	position: absolute;
	border-width: 7px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0);
	opacity: 0;
	transition: all .2s ease-in-out .25s;
	visibility: hidden;
}
.tooltip-top:hover:before{
	opacity: 1;
	visibility: visible;
}

/*Triangle starter positions*/

.tooltip-top:before {
	top: -51%;
	left: 50%;
	transform: translateX(-50%);
	border-top-color: #2b3742;
}

/* Triangle final positions */

.tooltip-top:hover:before {
	top: -21%;
}

/*-----------Fix of 20-07-2017 css-----------*/
.page-title h2 {
	font-weight:600;
}
.page-title-midle {
  padding: 15px 30px;
}
.page-title-midle {
  text-align: center;
}
.page-title p {
	display:inline-block;
  padding:0 15px;
}
.timecode {
  position:relative;
  top: -3px;
}
.two-col-with-header .page-title h2 {
	font-size:22px;
}
.two-col-with-header .page-title p {
	font-size:14px;
}
.page-wrap {
  max-height: 632px;
}
.page-wrap,
.player-wrap, .big-play-btn-wrap  {
	padding-bottom:0;
}
.audio-player {
	padding:0;
}
#media {
	height:15px;
}
.big-play-btn {
  margin-top: 0;
}
.page-content {
	margin-top:-15px;
}
.dropdown:hover .dropdown-menu {
	display:block;
}
@media (max-width:1024px) and (min-width:768px) {
  .menu li a {
    font-size:13px;
  }
}
@media (max-width:767px) {
  .two-col-with-header .col-sm-6 {
  	margin-bottom:50px;
  }
}

/*----------------- lightbox --------------*/
#lightbox {
  position:fixed; /* keeps the lightbox window in the current viewport */
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:url(img/overlay.png) repeat;
  text-align:center;
}
#lightbox p {
  text-align: center;
  color: #fff;
  margin-right: 20px;
  font-size: 16px;
  margin-top: 160px;
}
#lightbox img {
  box-shadow:0 0 25px #111;
  -webkit-box-shadow:0 0 25px #111;
  -moz-box-shadow:0 0 25px #111;
  max-width:940px;
}
/*---Extra css---*/
#lightbox {
	background:none;
  z-index:11;
}
#lightbox-overlay {
	background:rgba(0, 0, 0, 0.7);
  position:absolute;
  height:100%;
  width:100%;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:11;
}
#lightbox-wrap {
  width:100%;
  max-width:850px;
  padding:50px 30px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  z-index:111;
}
#lightbox #content {
  background:#ffffff;
  width:100%;
  max-height:650px;
  overflow:auto;
  margin:0 auto;
  padding:15px;
}
.lightbox-close {
  border: 1px solid #333333;
  border-radius: 100px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
  height: 36px;
  position: absolute;
  right: 10px;
  top: 30px;
  width: 36px;
}
#lightbox #content p {
	color:#333333;
  margin:0;
}

/*---------- lightbox end ------------*/
/*--------------SVG Image Player-------------*/
.play-item:hover,#ANISHINABEG-261:hover,#ANISHINABEG-141:hover {
  fill:#ef9321;
}
.tooltip-wrap {
  color: #ffffff;
  background:#4d80af;
  font-size:14px;
  line-height:18px;
  text-align: center;
  font-weight: 700;
  width: 150px;
  padding:7px;
  position: absolute;
}
.tooltip-wrap::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #4d80af;
  position: absolute;
  right: -10px;
  top: 0;
}
.main svg {
	max-height:620px;
}
@media (max-width:1366px) {
  .main svg {
    max-height:490px;
  }
}
@media (max-width:1024px) {
  .main svg {
    max-height:350px;
  }
}
@media (max-width:767px) {
  .main svg {
    max-height:100%;
  }
}

/*--------Fix of 24/07/2017 css--------*/
.menu li a {
	font-weight:400;
}
.dropdown-menu li a {
  padding: 17px 0 16px;
}
@media (max-width:1024px) {
  .dropdown-menu li a {
    padding: 7px 0 12px;
  }
}
.captions h1 {
	font-size: 24px;
  margin-top:15px;
}
.captions h2 {
	font-size: 22px;
}
.dropdown-menu {
	padding:5px 0;
}
.dropdown-menu li a {
  padding: 17px 15px 16px;
}
.audio-player table {
	box-shadow:0px 1px 5px -2px rgba(0, 0, 0, 0.5)inset;
}
.captions p {
  color:#000;
  line-height: 12px !important;
  font-weight: 400;
  padding:1px;
  /*margin-bottom:20px;*/
  cursor: pointer;
}
body .captions p, body div#captions p{
  line-height: 15px !important;
}
.captions p.current,
.captions p.current p,
.captions p.current h1 {
  color:#000000;
  background:none !important;
  font-style:normal !important;
}
@media (max-width: 1366px) {
  .main svg {
    max-height: 410px;
  }
}
@media (max-width:1366px) and (min-width:768px) {
  .header {
  	padding:15px 0 15px;
  }
}

.lang-change-link {
	font-weight:700;
}
.lang-change-link:hover {
	color:#ffffff !important;
}
a.lightbox_trigger {
    color: #ffa500;
}
.page-title {
	height:110px;
}
.page-wrap {
  max-height: 580px;
}
.page-wrap .row .col-sm-6:last-child .big-play-btn-wrap {
	padding-top:10px;
}
.big-play-btn {
  display: block;
  margin-top: 0;
  max-width: 100%;
  padding: 16px;
  text-align: center;
  width: 100%;
  box-shadow:0 1px 5px -2px rgba(0, 0, 0, 0.2) inset;
}
.big-play-btn img {
	width:9%;
  display:inline-block;
}


@media (max-width:1366px) {
  .page-wrap {
    max-height: 390px;
  }
}
@media (max-width:1024px) {
  .page-wrap {
    max-height: 406px;
  }
  .page-wrap .row .col-sm-6:last-child .big-play-btn-wrap {
    padding-top:25px;
  }
}

/*--------------Fix of 04/08/2017 css--------------*/

.btn-download a,
a.btn-download {
	border-radius:50% !important;
  border:5px solid #454e56 !important;
  background:none !important;
  height:50px;
  width:50px;
  padding:0 !important;
  position:relative;
}
.btn-download a::after,
a.btn-download::after {
	content:"";
  height:24px;
  width:24px;
  background:#ffa500;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  transition:all 0.3s;
}
.btn-download a:hover::after,
a.btn-download:hover::after {
  height:40px;
  width:40px;
}
.page-wrap {
  border-radius: 22px 22px 5px 5px;
}
.vc_tta-title-text{
  font-size: 24px;
  font-weight: bold;
}
.two-col-with-header .row .col-sm-6:last-child .page-content {
  padding-top:15px;
}
.footer-imgs li:nth-child(1) img {
	width: 300px;
}
.footer-imgs li:nth-child(2) img {
	width: 30px;
}
@media ( max-width: 767px ) {
	.footer-imgs li:nth-child(1) img {
	width: 200px;
}
.footer-imgs li:nth-child(2) img {
	width: 20px;
}
}

.main svg {
  max-height: 450px;
}
.page-content {
  max-height: 335px;
}
  .font-blur {
    color: #aaaaaa;
  }

@media (max-width:1366px) {
  .page-content {
    max-height: 280px;
  }
}
@media (max-width:768px) {
  .lang-change-link {
  	font-size:22px !important;
    line-height:24px !important;
  }
}
.section-head .vc_tta-panel-heading{
	background: #f09200;
}
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .section-head .vc_tta-panel .vc_tta-panel-title>a {
    color: #fff !important;
}
.btn-cta{
    font-size: 24px;
    text-transform: uppercase;
    color: orange;
    font-weight: bold;
    margin-top: 5px !important;
    padding: 30px !important;
}
#myModalEN, #myModal {margin-top: 100px;} /* Avant c'était 50 mais maintenant 100 pour afficher le menu */
#myModalEN .modal-header, #myModal .modal-header {
background: #f8f8f8;
}
footer {
  bottom: 0px;
  position: absolute;
  right: 0;
  background: rgba(69, 78, 86, 0.5);
  padding: 15px 0;
}
@media (max-width:2560px){
  .page-wrap{
  	max-height:1200px;
  }
  .page-content{
  	max-height:900px;
  }
}
@media (max-width:1920px){
  .page-wrap{
  	max-height:650px;
  }
  .page-content{
  	max-height:550px;
  }
}
@media (max-width:1680px){
  .page-wrap{
  	max-height:750px;
  }
  .page-content{
  	max-height:640px;
  }
}
@media (max-width:1440px) {
  .page-wrap {
    /*max-height: 580px;*/
    max-height: 500px;
  }
  .page-content{
  	/*max-height: 450px;*/
    max-height: 400px;

  }
}
@media (max-width:1366px) {
  .page-wrap {
    max-height: 480px;
  }
  .page-content{
  	max-height: 340px;
  }
}
@media (max-width:1280px) {
  .page-wrap {
    max-height: 500px;
  }
  .page-content {
  	max-height: 400px;
	}
}
@media (max-width:1024px) {
  footer {
    bottom: 0px;
  }
  .menu li {
    padding: 0 0 0 15px !important;
  }
  .page-wrap {
    max-height: 390px;
  }
  .page-content{
  	max-height: 260px;
  }
}
.logo {
    float: left;
}
.footer-imgs {
    margin: 0 15px;
}
ul.about-verbiage li{
list-style-type: none;
}
ul.about-verbiage{
  padding-left: 15px;
}
.captions p.current p, .captions p.current h1, .captions p.current h2, .captions p.current h3, .captions p.current h4 {
    font-weight: 700;
    text-decoration: underline;
}
.main {
    padding: 25px 0 30px;
}
.home .vc_col-has-fill>.vc_column-inner {
  padding-top: 0 !important;
}
.multiple-box h1, .multiple-box h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.menu li {
    padding: 0 0 0 40px;
}
.captions h1, .captions h2, .captions h3, .captions h4, .captions h5, .captions h6 {
	margin: 10px 0;
}
footer {
  position: fixed !important;
}

/*---------Fix of 21/09/2017 css--------*/

a.hint {
  position: relative;
  display: inline-block;
  z-index: 1;
}

@media (min-width:1600px) {
  .main svg {
    max-height: 750px;
  }
}
@media (max-width: 1024px) {
  .page-wrap {
    max-height: 467px;
  }
  .page-wrap .row .col-sm-6:last-child .big-play-btn-wrap {
    padding-top: 10px;
  }
  .btn-cta {
    padding: 31px 30px !important;
  }
}

/*---------Fix of 25/09/2017 css---------*/
.dropdown-menu li {
	padding:0 !important;
	
							/*---------Ajout par Marc pour séparer naskapis et Francais dans le menu moins large---------*/
	width:100%;						
}
.footer {
  position:relative;
}
.screen-size {
  color:rgba(255,255,255,0.4);
  font-size:12px;
  line-height:16px;
	position:absolute;
  bottom:0;
  left:15px;
}

@media (max-width: 767px) {
  footer {
    position:static !important;
  }
  .footer {
    position:relative;
    padding-bottom: 15px;
  }
  .page-wrap {
  	width:100% !important;
  }
  #lightbox #content {
    max-height: 450px;
  }
}

/* The Modal for Image (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    /*max-width: 760px;*/
}
/* Add Animation */
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 25px;
    right: 50px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

/** NEW PLAYER STYLE **/
.single-player-content {
	position: relative;
	height: 100%;
	border: 1px solid #dddddd;
	border-top-left-radius: 15px;
	background: #ffffff;
	border-top-right-radius: 15px;
}
.player-header {
	background: rgba(255, 255, 255, 0.9) url(img/bg-top_2.png);
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
  min-height: 110px;
}
.player-header h2 {
	color: #ffffff;
	margin: 0;
	padding: 15px 0;
	text-align: center;
	font-size: 24px;
	line-height: 25px;
}
.player-header p {
	color: #ffffff;
	display: inline-block;
	padding: 0 15px;
	margin: 0;
}
.player-body {
	height: 450px;
	padding: 20px 15px;
	overflow-y: auto;
}
.space {
	width: 100%;
	float: left;
	height: 80px;
}
.player-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.player-footer tbody {
	border-bottom: 0;
}
.player-footer h2 {
	margin: 0;
	text-align: center;
	padding: 20px 0;
}
@media(max-height:1440){
  .player-body {
  	height: 900px;
  }
}
@media(max-height:1080px){
  .player-body {
  	height: 530px;
  }
}
@media(max-height:900px){
  .player-body {
  	height: 450px;
  }
}
@media(max-height:800px){
  .player-body {
  	height: 380px;
  }
}
@media(max-height:768px){
  .player-body {
  	height: 350px;
  }
}
@media(max-height:600px){
  .player-body {
  	height: 200px;
  }
}
@media(max-width:767px){
	.single-player-content {
		margin-bottom: 40px;
	}
}

/*-------------Fix of 18/10/2017 css------------*/
.page-wrap {
  max-height: 100% !important;
}
@media (max-width:991px) {
  .big-play-btn {
    font-size: 14px !important;
  }
  .two-col-with-header .page-title p {
    font-size: 12px !important;
  }
}
/*** END **/

a#lightbox_image {
	font-size: 21px;
}
.footer-optimized {
	text-align: center;
	color: #fff;
	font-size: 14px;
}