.ui-dialog{
    width: 90% !important; /*The !important ensures it overrides the Canvas native settings*/
    left: 0 !important;
    margin-left: 5% !important;
    top:10px !important;
}
.ui-dialog-titlebar{padding: .4em 1em !important;}
.ui-dialog .ui-dialog-content{height: 100vh !important;}
@media screen and (min-width: 48em){
    .ui-dialog{
        width: 80% !important; /*The !important ensures it overrides the Canvas native settings*/
        left: 0 !important;
        margin-left: 10% !important;
        /*padding-bottom: 4em;*/
    }
    .ui-dialog-titlebar{display:block;}
}

/*Login Page Customization*/
/*Add "set password" for new users*/
.forgot_password_link::after{
    content: "\ANew Users: Set Password";
    white-space: pre-wrap;
}
.forgot-password::after{
    content: "\ANew Users: Set Password";
    white-space: pre-wrap;
}

/*ADD PASSWORD RESET LOGIN ISSUE*/
#login_form::after{
    content: "Issues logging in or setting/resetting your password?\A Email: info@cuecollege.org";
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 12px;
}

/*This is the CSS that was uploaded to Canvas to override the Canvas Popup settings and increase the size of the popups*/

/*Custom CSS for Popups*/
.cs-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1002;
}
.cs-overlay:target {
  visibility: visible;
  opacity: 1;
}

.cs-popup {
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 80%;
  height: 80vh;
  position: relative;
 /* transition: all 5s ease-in-out;*/
}

.cs-popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.cs-popup .cs-close {
  position: absolute;
  top: 5px;
  text-decoration:none;
  right: 30px;
  width: 100%;
  text-align: right;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none !important;
  color: #333;
}
.cs-popup .cs-close:hover {
  color: #ff0000;
}
.cs-popup .cs-content {
    margin-top: 20px;
    height: 100%;
}

/*Accordion CSS*/
.cs-accordion, .new-accord{
    color: #fff;
    cursor:pointer;
    padding: 18px;
    border: none;
    transition: 0.4s;
    text-align: left;
}
details{
    padding: 4px 0;
}
summary.new-accord{
    font-size: 30px;
    font-weight: bold;
}
details:nth-child(odd) summary.new-accord, h2.cs-accordion{
    background-color: #269EE6;
}

details:nth-child(even) summary.new-accord{
    background-color: #20b2aa;
}
details summary.new-accord.force-blue{
    background-color: #269EE6 !important;
}
details summary.new-accord.force-green{
    background-color: #20b2aa !important;
}
.cs-acc-expanded, .cs-accordion:hover, summary.new-accord:hover{
    background-color: #444;
}
.cs-acc-panel{
    padding: 0 18px;
    display:none;
    background-color: white;
}
.new-content{
    padding: 0 16px;
}
:not(details) .cs-accordion:after{
    content: '\002B';
    color: #ccc;
    font-weight:bold;
    margin-left: 5px;
    float: right;
}
:not(details) .cs-acc-expanded:after{
    content: '\2212';
}

/*Hide Groups Nav Item to avoid students seeing other students - privacy */
#global_nav_groups_link{
    display:none;
}

/*We can add more custom CSS as needed, and JavaScript, if needed*/