/* --------------------------------------
    Theme Name: UWinnipeg News 2021
    Author: Manoverboard Inc
    Author URI: manoverboard.com
-------------------------------------- */

/* -------------- clearfix --------------- */
.cf:after { visibility: hidden; display: block;	font-size: 0; content: " "; clear: both; height: 0; }
* html .cf { zoom: 1; } /* IE6 */
*:first-child+html .cf { zoom: 1; } /* IE7 */
* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}
:focus {
    outline: 1px dotted rgba(0,0,0,0.5);
}
.aria-hide {
    position: absolute;
    top: 0;
    left: -5000px;
}
.button:focus {
    /* outline: 2px dotted rgba(0,0,0,0.5); */
}

a, button  {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -khtml-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        outline: 0;
    
}
em, i {
    font-style: italic;
}

  .skip-link {
      position: absolute !important;
      top: 0;
      left: -4000px;
      background: #292929;
      color: white;
      displaY: inline-block;
      z-index: 1000000;
      font-size: 210%;  
    text-decoration: none;
    font-size: 160%;
    padding: 15px ;
  }
  .skip-link:focus {
    left: 0;
    outline: none;
    position: relative;
}
/* -------------- zeros --------------- */
ul, ol, li,
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-size: 100%;
}
/* -------------- tweakers --------------- */
::selection {
    background: #ffb0b5; /* WebKit/Blink Browsers */
    color: #292929;
  }
::-moz-selection {
    background: #ffb0b5; /* Gecko Browsers */
    color: #292929;
}
.hidden {
    display: none;
}
.sr-only {
    border: 0; 
    clip: rect(0 0 0 0); 
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    height: 1px; 
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}
.clear-both {
    clear: both;
}
/* -------------- max width --------------- */
.mw730 {
    max-width: 730px;
    /*width: 730px;     lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left;
}
.mw920 {
    max-width: 920px;
    /*width: 730px;     lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left;
}
.mw1024 {
    max-width: 1024px;
    /*width: 1024px;    /* lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left;
}

.mw1160 {
    max-width: 1160px;
    /*width: 1160px;    /* lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left;
}
.mw1400,
.modern-page .mw1024 /* override header and footer max width on mdoern pages */
{
    max-width: 1400px;
    /*width: 1400px;    /* lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left;
}

.mw1440 {
    max-width: 1440px;
    /*width: 1400px;    /* lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left;
}



.modern-page #footer-info .mw1024,
.modern-page .mega-dropdown .mw1024 {
    max-width: 1440px;
}

.mw1700 { /* for professor profiles, to make room for arrow navigation */
    max-width: 1700px;
    /*width: 1160px;    /* lock */
    /* position: relative; */
    margin: 0 auto;
    text-align: left; 
}

/* -------------- basics --------------- */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
}
hr {
    border: none;
    border-top: 1px solid #dfdfdf;
    margin: 45px 0;
}
/* -------------- buttons --------------- */
.button {
    display: inline-block;
    box-sizing: border-box;
    paddinG: 20px 30px;
    
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 160%;
    text-align: center;

    border-width: 3px;
    border-style: solid;
    background: transparent;
}
.stype .button {
    margin-top: 20px;
    margin-bottom: 20px;
}
/* -------------- button outline --------------- */
.button.outline {
}
.button.outline.white {
    border-color: white;
    color: white;
}
.button.outline.grey {
    border-color: #292929;
    color: #292929;
}
.button.outline.red {
    border-color: #e71c31;
    color: #e71c31;
}
/* -------------- button full --------------- */
.button.full {
    background-color: #e71c31;
    border-color: #e71c31;
    color: white !important;
    width: auto;
}
.button.full.grey {
    background-color: #bfbfbf;
    border-color: #bfbfbf;
    color: white;
    width: auto;
}
/* -------------- button effects --------------- */
.button {
    position: relative;
    transition: all .1s ease-in-out;
    z-index: 5;
    outline: none;
    overflow: hidden;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.button:after,
.button:before {
    transition: transform .2s ease-in-out;
    transform-origin: top left;

}
.button:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    
}
.button:hover:after,
.button:focus:after {
    background-position: left bottom;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);

    transition: transform .2s ease-in-out;
    transform-origin: bottom left;
}
.button.outline.white:hover,
.button.outline.white:focus {
    color: #e71c31 !important;
}
.button.outline.white:after {
    background-color: white;
}
.button.outline.red:hover,
.button.outline.red:focus {
    color: white !important;
}
.button.outline.red:after {
    background-color: #e71c31;
}
.button.outline.grey:after {
    background-color: #dfdfdf;
}
.button.full.red:hover,
.button.full.red:focus {
    color: #e71c31 !important;
}
.button.full.red:after,
.button.full.red:before {
    background-color: white !important;
}
.button-set {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-top: 60px;
    justify-content: space-between;
}
.button-set li {
    box-sizing: border-box;
    width: calc(25% - 15px);
    margin: 0 0 20px 0;
}
.button-set li a.button {
    width: 100%;
    box-sizing: border-box;
}





/* -------------- button outline --------------- */
.alm-btn-wrap {
    text-align: center;
}
.alm-btn-wrap .alm-load-more-btn {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    z-index: 5;
    paddinG: 20px 30px;
    transition: all .1s ease-in-out;
    outline: none;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 160%;
    text-align: center;
    border: 3px solid #e71c31;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    margin: 60px auto 5px;
    cursor: pointer;

    background-color: #e71c31;
    border-color: #e71c31;
    color: white !important;
    width: auto;
}
.home .alm-btn-wrap .alm-load-more-btn {
    margin: 40px auto 5px;
}
.alm-btn-wrap .alm-load-more-btn:hover,
.alm-btn-wrap .alm-load-more-btn:focus {
    color: #e71c31 !important;
}
.alm-btn-wrap .alm-load-more-btn:after {
    background-color: white;
    transition: transform .2s ease-in-out;
    transform-origin: top left;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}
.alm-btn-wrap .alm-load-more-btn:hover:after,
.alm-btn-wrap .alm-load-more-btn:focus:after {
    background-position: left bottom;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);

    transition: transform .2s ease-in-out;
    transform-origin: bottom left;
}



/* -------------- button outline --------------- */
#sidebar .button {
    width: 100%;
}
/* -------------- chevron links --------------- */
.text-link {
    display: inline-block;
    font-family: proxima-nova, sans-serif;
    font-weight: 700;
    letter-spacinG: 0.05em;
    text-decoration: none;
    font-size: 160%;
    color: #292929;
    padding: 5px 0;

    position: relative;
}
.text-link:focus {
    outline: none;
    text-decoration: underline !important;
}
.widget .text-link,
#website-footer .text-link {
width: 100%;
}
.text-link.style1:hover ,
.text-link.style2:hover ,
.text-link.style3:hover ,
.text-link.style4:hover,
.text-link.style1:focus ,
.text-link.style2:focus ,
.text-link.style3:focus ,
.text-link.style4:focus {
    color: #e71c31; 
}
.text-link:after {
    clear: both;
    content: '';
    display: inline-block;
    margin-left: 10px;
    width: 7px;
    heighT: 12px;
    margin-top: 0;
    background-size: 7px 12px;
    background-image: url('img/chevron-right-red.svg');
    background-position: center;
    transition: all 0.2s ease-in-out !important;
}

.text-link:before,
.text-link:after {
    top: 50%;
    transform: translatey(-50%);
    position: absolute;
}


.text-link:hover:after,
.text-link:focus:after {
    margin-left: 15px;
}
/* chevron style 2 */
.text-link.style2 {
    font-size: 160%;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.025em;
    color: #292929;
}
.text-link.style2:after {
    background-image: url('img/chevron-right-red.svg');
}

.text-link.style3 {
    display: block;
}
/* chevron style 3 */
.text-link.style3,
.text-link.style4 {
    font-size: 160%;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.025em;
    color: #292929;
    padding-left: 20px;
    position: relative;
    line-height: 1.8;
}
.text-link.style3:after,
.text-link.style4:after {
    background-image: none;
}
.text-link.style3:before,
.text-link.style4:before {
    clear: both;
    content: '';
    display: inline-block;
    position: absolute;
    margin-left: 0;
    /* top: 14px; */
    left: 0;
    width: 7px;
    heighT: 12px;
    background-size: 7px 12px;
    background-image: url('img/chevron-right-grey.svg');
    background-position: center;
    transition: all 0.2s ease-in-out !important;
}
.text-link.style4:before {
    background-image: url('img/chevron-right-red.svg');
}
.text-link.style3:hover:before,
.text-link.style4:hover:before,
.text-link.style3:focus:before,
.text-link.style4:focus:before {
    margin-left:3px;
    background-image: url('img/chevron-right-red.svg');
}
.text-link.style3:hover,
.text-link.style4:hover,
.text-link.style3:focus,
.text-link.style4:focus {
}

#main .text-link {
    /* display: block; */
}
/* -------------- content containers --------------- */
body {
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-size: 62.5%;
    line-height: 1.2;
}


/* -------------- video banner --------------- */

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.section-home-banner .video-container {
    height: 860px;
}
.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#play-button {
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 50px;
    right: 0;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 100px;
    cursor: pointer;
    background-size: 120px 60px;
    background-image: url('img/play-button.svg');
    background-position: 0 0;
    color: transparent;
}
#play-button.paused {
    background-position: 60px 0;
}





.section-single-post .hscroll {
    overflow-x: scroll;
}
.section-single-post td,
.section-single-post th {
    font-size: 180%;
    font-weight: 400;
    line-height: 1.2;
    padding: 5px 10px;
}
.section-single-post th {
    font-weight: 700;
}