@import url("https://fonts.googleapis.com/css?family=Roboto");

/* define global elements and CSS Variables */
* {
  box-sizing: border-box;
 
}

:root {
  --content-font-family: 'Oswald', Helvetica, sans-serif;
  --content-font-weight: 300;
  --header-font-weight: 400;
  --default-pm-green: #467C48;
  --error-red: #f44336;
  --warning-yellow: #ffe002;
  --color-primary: #000; 
  --color-background: #fff; 
  --color-sidenav:#DDD;
  --color-accent:gray;
  --color-sidenav-button:#DDD;
  --color-sidenav-hover:#FFF;
  --icon-filter:none;
  --lightmode-header:#EEE;
  --rubric-hover:lightgreen;
}

/* set default fonts and padding */
body,
html {

  font-family: var(--content-font-family);
  font-weight:var(--header-font-weight);
  margin: 0px;
  padding-right: 15px;
  background: var(--color-background);
  color: var(--color-primary);
}

textarea{
  background-color: var(--color-background);
  color:var(--color-primary);
}

input{
  background-color: var(--color-background);
  color:var(--color-primary);
}

select{
  background-color: var(--color-background);
  color:var(--color-primary);
}
.invert {
  filter: invert(0.9);
}

.svg {
  filter:var(--icon-filter);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter:var(--icon-filter);
}

.font-arial {
  font-family: Arial, sans-serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-inconsolata {
  font-family: "Inconsolata", monospace;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-lexend {
  font-family: "Lexend", sans-serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-merriweather {
  font-family: "Merriweather", serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-opensans {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-quicksand {
  font-family: "Quicksand", sans-serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-roboto {
  font-family: "Roboto", sans-serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-robotomono {
  font-family: "Roboto Mono", monospace;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

.font-times {
  font-family: "Times New Roman", serif;
  font-weight: var(--content-font-weight);
  font-style: normal;
}

/* For mobile phones: */
.rubricWrapper {
  display: inline-block;
  width: 25%;
}

.warning {
  background-color:var(--warning-yellow);
  border-radius:50%;

}
.rubricRow {
  display: flex;
  flex-wrap: wrap;
}

[class*="col-"] {
  width: 100%;
  box-sizing: border-box;
  float: left;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.row {
  width: 100VW;
}

.mobile-hide {
  display: none;
}

/* in mobile, the sidenav is a flyover, so we need to zero out the left margin */
.contentframe {
  margin-left: 0;
  margin-top: 160px;
  padding: 10px;
  width: 100VW;
}

/* in mobile, we want the navbar to stack, and be centered. */
#navbarleft {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: 1;
}

#navbarcenter {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  padding-bottom:5px;
}

#navbarright {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.navbarlogo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin-left: -40px;
}

.dashboard-left{
  order:2;
}

.dashboard-right{
  order:1;
}
.col-sm-1 {
  width: 8.33%;
}

.col-sm-2 {
  width: 16.66%;
}

.col-sm-3 {
  width: 25%;
}

.col-sm-4 {
  width: 33.33%;
}

.col-sm-5 {
  width: 41.66%;
}

.col-sm-6 {
  width: 50%;
}

.col-sm-7 {
  width: 58.33%;
}

.col-sm-8 {
  width: 66.66%;
}

.col-sm-9 {
  width: 75%;
}

.col-sm-10 {
  width: 83.33%;
}

.col-sm-11 {
  width: 91.66%;
}

.col-sm-12 {
  width: 100%;
}


/* Media print is for a printable view of the sprint grading */
@media print {
  .rubricRow {
    display: block;
  }

  .rubricWrapper {
    display: inline-block;
    width: 50%;
  }

  .pagebreak {
    clear: both;
    page-break-after: always;
  }

  h2 {
    margin: 0px;
  }
}

.hamburger-menu {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  margin-right: 15px;
  vertical-align: middle;
}




@media only screen and (min-width: 1024px) {
  
  
  .col-md-1 {
    width: 8.33%;
  }

  .col-md-2 {
    width: 16.66%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33%;
  }

  .col-md-5 {
    width: 41.66%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33%;
  }

  .col-md-8 {
    width: 66.66%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33%;
  }

  .col-md-11 {
    width: 91.66%;
  }

  .col-md-12 {
    width: 100%;
  }

  
  .sidenav {
    transform: none;
  }
.dialog-content {
  
  margin: 12VH auto;
  /* 15% from the top and centered */
  padding: 1px 10px 20px 20px;
  border: 1px solid #888;
 
  border-radius: 10px;
  /* Could be more or less, depending on screen size */

}


.contentframe {
    margin-left: 250px;
    margin-top: 120px;
    padding: 10px;
    width: 100VW;
  }

  .rubricWrapper {
    display: inline-block;
    width: 50%;
  }

  .hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    vertical-align: middle;
  }

  #navbarleft {
    display: flex;
    align-items: center;
    justify-content: flex-start;

  }

  #navbarcenter {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    
  }

  #navbarright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 3;
  }

  .mobile-hide {
    display: block;
  }

  .pad-desktop-cols {
    padding-right: 10px;
  }

  .dashboard-left{
  order:1;
}

.dashboard-right{
  order:2;
}
}

@media only screen and (min-width: 1024px) {
  .col-1 {
    width: 8.33%;
  }

  .col-2 {
    width: 16.66%;
  }

  .col-3 {
    width: 25%;
  }

  .col-4 {
    width: 33.33%;
  }

  .col-5 {
    width: 41.66%;
  }

  .col-6 {
    width: 50%;
  }

  .col-7 {
    width: 58.33%;
  }

  .col-8 {
    width: 66.66%;
  }

  .col-9 {
    width: 75%;
  }

  .col-10 {
    width: 83.33%;
  }

  .col-11 {
    width: 91.66%;
  }

  .col-12 {
    width: 100%;
  }

  .contentframe {
    margin-top: 120px;
    margin-left: 250px;
    padding: 10px;
    width: 75VW;
  }

  .rubricWrapper {
    display: inline-block;
    width: 25%;
  }
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
  .sidenav {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;

    z-index: 99;
  }

  .sidenav.active {
    transform: translateX(0);
  }

.dialog-content {
  margin:12vh auto;
  margin-top:200px;
  width:70vw;
}

  .dropdowns-container {
    width: 100% !important;
    order: 3;
    margin-top: 10px;
  }

  #navbarright * {
    margin-left: 5px;
    float: none;
  }
}




.buttonbar {
  text-align: right;
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.buttonbar input {
  margin-right: 5px;
}
.submitbutton {
  background-color: var(--default-pm-green);
  /* Green */
  border: none;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 5px;
}
.disabled {
  background-color: lightgray;
  color: darkgray;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 5px;
}



.actionbutton {
  background-color: var(--default-pm-green);
  /* Green */
  border: none;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  float: left;
}

.actionDropdown {
  
  font-size: 12px;
  font-weight: 100;
  background-color: var(--color-background);
  float: left;

  border-radius: 5px;
  margin-right: 5px;
  padding: 5px;
}

.rubricPopup{
  display:none;
  background:var(--color-sidenav);
  border-radius: 5px;
  padding:5px;
}




/* Toast message for feedback */
#toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;

  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  right: 50px;
  bottom: 30px;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s;
}

/* Show the toast */
#toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

/* Success style */
#toast.success {
  background-color: var(--default-pm-green);
  color: white;
}

/* Error style */
#toast.error {
  background-color: var(--error-red);
  color: white;
}

.ui-widget{
  background-color: var(--color-background);
  color:var(--color-primary);
}

.ui-widget-content{
  background-color: var(--color-background);
  color:var(--color-primary);
}

.ui-widget-header{
  background: var(--color-background);
  color:var(--color-primary);
} 

select,
::picker(select) {
  appearance: base-select;
}

select {
  margin-top: 2px;
  border: 2px solid #ddd;
  background: var(--color-background);
  color:var(--color-primary);
  padding: 3px;
  padding-top: 5px;
  transition: 0.4s;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

select:hover,
select:focus {
  background: var(--color-sidenav-hover);
}

input {
  padding: 3px;
  border-radius: 4px;
}



.addbutton {
  background-color: var(--default-pm-green);
  /* Green */
  border: none;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;

}

ul .chosen-choices {
  border-radius: 4px;
}

.draftwarn {
  background-color: var(--error-red);
  border-radius: 5px;
  color: white;
}

.finalgreen {
  background-color: var(--default-pm-green);
  border-radius: 5px;
  color: white;
}

.clearbutton {
  background-color: #666;
  border: none;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: 5px;
}

.late {
  background-color: var(--error-red);
  color: white;
  border-radius: 5px;
}

.longinput {
  margin-bottom: 20px;

  width: 100%;
}

.absent {
  background-color: var(--error-red);
  color: white;
  border-radius: 5px;
  text-align: center;
}

.pmdashboardtable {
  padding: 8px;
  background-color: var(--color-sidenav);
  border-radius: 5px;
  margin: 5px;

}

.attendancerow::before {
  height: 3px;
  display: table-row;
  content: "";
}

.pmdashboardtable td {
  padding: 3px;
  margin-left: 3px;
  text-align: end;
  border: 1px solid black;
}

.pmdashboardtable th {
  padding: 3px;
  margin-left: 3px;
  text-align: end;
}

.boardstat {
  background-color: var(--default-pm-green);
  color: white;
  border-radius: 5px;
  margin-right: 5px;
  padding: 3px;
  margin-bottom: 5px;
}

.boardstatbad {
  background-color: var(--error-red);
  color: white;
  border-radius: 5px;
  margin-right: 5px;
  padding: 3px;
  margin-bottom: 5px;
}

.boardstatwarn {
  background-color: var(--warning-yellow);
  color: black;
  border-radius: 5px;
  margin-right: 5px;
  padding: 3px;
  margin-bottom: 5px;
}

.buttonoff {
  display: none;
}

.buttonon {
  display: block;
}

label {

  display: inline-block;

}

.valuewrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

}

.criteriawrapper {
  margin: 10px;
  padding: 5px;
}

.editrubricheader {
  background-color: var(--default-pm-green);
  padding: 5px;
  color: white;
}

.rubricsection {
  border-radius: 10px;
  border-width: 3px;
  border-color: #555;
  border-style: solid;
  margin-bottom: 5px;

}

.rubriccriteria {
  border-radius: 10px;
  background-color: var(--color-sidenav);
  padding: 20px;
  margin-bottom: 5px;
}

.rubricvalue {
  border-radius: 10px;
  background-color: var(--color-background);
  color: var(--color-primary);
  padding: 5px;

  flex-grow: 1;
  margin: 10px;
}

.rubricWrapperEntry {
  border-color: var(--default-pm-green);
  border-width: 3px;
  border-style: solid;
  border-radius: 5px;

  height: 300px;
  padding: 5px;
  margin: 5px;
  position: relative;
}

.rubricEntry {
  border-color: var(--default-pm-green);
  border-width: 3px;
  border-style: solid;
  border-radius: 5px;
  width: 23%;
  height: 300px;
  padding: 5px;
  margin: 5px;
  position: relative;
}

.iconlink {
  margin-left: 5px;
  padding: 3px;
  background: var(--color-background);
  color: var(--color-primary);
  border-radius: 3px;
}

.iconlink.clear{
  background:none;
  color:inherit;
  border: 1px solid var(--color-sidenav);
  border-radius: 3px;
}

.rubricHeader {
  background-color: var(--color-sidenav);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 5px;
  text-align: center;
}

.half {
  width: 50%;
  display: inline-block;
}

.rubricBody {
  margin-top: 40px;
  font-size: smaller;
  position: inherit;
  overflow: auto;
  height: 140px;
}

.smalltext {
  font-size: x-small;
}
.meeting{
  background: var(--color-background);
  border-radius: 5px;
  font-size:small;
  margin-bottom:3px;
  padding:3px;
  display:flex;
  align-items: center;
  
}
.icon{
  width:20px;
  margin-right:3px;
}
.medtext {
  font-size: small;
}
.teamlinktext{
  font-size: small;
  text-decoration:none;
  display:inline-block;
  padding-left: 7px;
  margin:0px;
  color: var(--color-primary)
}
.linkhalf{
  width:45%;
  margin-bottom: 3px;
}
.plaintext {
  text-decoration:none;
}
.rubricWeight {
  font-size: larger;

}

.rubricScoreHalf {

  font-size: x-large;
  font-weight: bolder;
  text-align: center;
  width: 50%;
  height: 100%;
}

.rubricScore {

  font-size: x-large;
  font-weight: bolder;
  text-align: center;
  width: 100%;
}

.rubricScoreBox {

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.rubricBlocked {
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

[class*="rubricScore"] {
  background-color: var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

[class*="rubricScore"]:hover {
  background-color: var(--rubric-hover);

}

.waiting {
  height: 40px;
  width: auto;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;

}

.rubricNotes {
  width: 100%;
  margin-bottom: 20px;
}

.rubricSubmit {
  width: 100%;
  background-color: var(--default-pm-green);
  border-radius: 5px;
  font-size: x-large;
  padding: 20px;
  color: white;
}

.rubricSubmit:hover {
  background-color: var(--rubric-hover);
}

.scoreSelected {
  background-color: var(--default-pm-green);
}

.comments {
  margin-top: 10px;
  width: 50%;
  height: 100px;
}

.aligned {
  width: 150px;
}

.indented {
  margin-left: 150px;
}

.forminput {
  width: 50%;
  max-width: 300px;
  border: 1px solid #aaa;
  height: 25px;

}

.forminputhalf {
  width: 24.5%;
  max-width: 148px;
  border: 1px solid #aaa;
  height: 25px;

}

.resultstable {

  display: inline-block;
  width: 100%;
  z-index: -1;
  /*sri introduced this line*/


}

.topright {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 18px;
  height: 100%;
  width: 200px;
}

.tooltip {
  position: relative;
  display: inline-block;

}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: lightgray;
  color: black;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  margin-left: 100px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.teamheader {
  background: var(--default-pm-green);
  color: white;
  padding: 5px;
  margin-top: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.teamsubheader {
  background-color: var(--lightmode-header);
  border-radius: 5px;
  padding-left: 3px;
  padding-right: 3px;
}

.teambody {
  
  padding: 5px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
}

#viewteam .header {
  background: var(--default-pm-green);
  padding: 10px;
  margin-top: 40px;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#viewteam .subheader {
  background: var(--default-pm-green);
  padding: 10px;
  margin-top: 10px;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#viewteam .vision {
  background: var(--color-sidenav);
  padding: 10px;
}

#viewteam .policy {
  font-family: 'Courier New', Courier, monospace;
  font-weight: lighter;
  overflow: scroll;
  background: var(--color-sidenav);
  
}

#viewteam .teambody {
  background: var(--color-sidenav);
  
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#viewteam .zoom {

  margin: 0;
  transition: transform .2s;
  /* Animation */
  clip-path: circle(20px at 50% 50%);
  margin-right: 10px;

}

.navbar {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;

  /*background: linear-gradient(to right, var(--default-pm-green), rgb(66, 200, 73));*/
  background: var(--default-pm-green);
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100VW;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.innerfield {
  border: none;
  background: lightblue;
  border-radius: 5px;
}

.sidenav {
  float: left;
  position: fixed;
  left: 0;
  margin-top: -75px;
  height: 100%;
  width: 200px;
  display: flex;
  overflow: auto;
  background-color: var(--color-sidenav);
}


.sidenav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: var(--color-sidenav);

}

.clickable {
  background-color: lightgray;
  border-radius: 5px;
  padding: 5px;
  cursor: pointer;
}

.sidenav li button {
  width: 100%;
  border: none;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color:var(--color-primary);
  background-color: var(--color-sidenav-button);
  
  cursor: pointer;
  font-family: var(--content-font-family);
  font-size: large;
  margin-bottom: 3px;
}

/* Change the link color on hover */
.sidenav li button:hover,
li.active button {
  background-color: var(--color-sidenav-hover);
  color: var(--color-primary);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  width: 90%;
  margin-left: 10%;
}

.boxed {
  width: 400px;
  border: 5px solid;
  padding: 50px;
  margin: 20px;
}

.repoEntry {
  max-width: 70%;
  display: inline-block;
  margin-right: 5px;
}

input.repoEntry {
  width: 70%;
  display: inline-block;
  margin-right: 5px;
  margin-left: 3px;
}

.repoLabel {
  max-width: 30%;
  display: inline-block;
  margin-right: 5px;
}



.hide {
  display: none;
}

#modify {
  display: block;
}

.memberEntry{
  display:flex;
  flex-wrap: wrap;
  border: 1px solid var(--color-sidenav);
  border-radius: 5px;
  padding:5px;
  
  margin-bottom: 10px;
  justify-content: space-between;
}

.statusInput{
  margin-left:10px;
  padding:5px;
  display:flex;
}
.shift-pressed .namepic:hover>.hide {
  display: block;
  position: absolute;
  margin-top: -130px;
}

.shift-pressed .namepic:hover>.namedown {
  background-color: #06830c;
  border-radius: 5px;
  color: white;
  padding: 5px;
}




.zoom {

  transition: transform .2s;
  /* Animation */
  clip-path: circle(20px at 50% 50%);
  margin-left:40px;
}



.shift-pressed .zoomup {

  transition: transform .2s;
  /* Animation */
  clip-path: circle(20px at 50% 50%);
  margin: 0 auto 40%;

}

.zoomleft {

  transition: transform .2s;
  /* Animation */
  clip-path: circle(20px at 50% 50%);

}

.zoom:hover,
.zoomleft:hover,
.zoomup {
  transform: scale(3.0);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.l2modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top -- sri changed from 1 to 0--*/
  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.4);
  /* Black w/ opacity */
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 0;
  /* Sit on top -- sri changed from 1 to 0--*/
  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.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--color-background);
  color: var(--color-primary);
  margin: max(12VH, 150px) auto;
  /* 15% from the top and centered */
  padding: 1px 10px 20px 20px;
  border: 1px solid #888;
  width: 90VW;
  border-radius: 10px;
  /* Could be more or less, depending on screen size */

}

.dialog-content {
  background-color:var(--color-background);
  color:var(--color-primary);
  
  /* 15% from the top and centered */
  padding: 1px 10px 20px 20px;
  border: 1px solid #888;
 
  border-radius: 10px;
  /* Could be more or less, depending on screen size */

}

/* Modal Content/Box */
.modal-limited {
  background-color:var(--color-background);
  color:var(--color-primary);

  height: 85VH;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  line-height: 42px;
  font-size: 35px;
  font-weight: bold;
}

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

fieldset {
  display: block;
  margin-left: 2px;
  margin-right: 0px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 0.35em;
  padding-bottom: 0.625em;
  padding-left: 0.75em;
  padding-right: 2em;
  border: 1px solid;
  border-radius: 5px;
}

.menu-divider {
  border-top: 1px solid gray;
  padding-top: 15px;
}

.menu-last {
  padding-bottom: 15px;
}

.erroricon {
  background: var(--error-red);
  border-radius: 5px;
  padding:3px;
  width:23px;
  height:23px;
}
/*******************************************************************/
/******************************* Shubham ***************************/
/**************************************************************/

.admin {
  display: none;
}

.error-message {
  color: var(--error-red);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  text-shadow: 1px 1px rgba(250, 250, 250, .3);
}

.success-message {
  color: #06830c;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  text-shadow: 1px 1px rgba(250, 250, 250, .3);
}

.topCourseDropdown {
  display: none;
 color: var(--color-primary);
 background-color: var(--color-background);
}

.topSemesterDropdown {
  display: none;
  margin-right: 5px;
 color: var(--color-primary);
 background-color: var(--color-background);
}

.profilename {
  margin-right: 5px;
  color: var(--color-background);
}

/* select {
  display: none;
} */

.topCourseDropDown .semester {
  display: inline-block;
  font-size: 12px;
  font-weight: 100;
  color: var(--color-sidenav);
}

.topCourseDropDown .current .semester {
  display: none;
}

.dashboard-error {
  display: none;
}

dialog {
  border-radius: 15px;
  border: none;
}

.dialog-button {
  border-radius: 5px;
  background-color: #06830c;
  color: white;
  border: none;
  padding: 5px;
  float: right;
  margin: 5px;
}

/**************************************************************/
/************************** Shubham ***************************/
/**************************************************************/

.navbar a {
  font-size: 17px;
  float: right;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 0, 255, 0);
  margin: 10px;
}

.dropbtn {
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 10px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  font-weight: bold;
  color: var(--default-pm-green);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*******************************************************************/
/******************************* Tendu ***************************/
/**************************************************************/




.menu-container {
  position: relative;

  margin: 0px;

}

.menu-container.open>.menu-button {
  color: var(--color-primary);
}

.menu-container.open>.menu-dropdown {
  opacity: 1;
  display: block;
  transition: opacity 0.2s, box-shadow 0.3s, -webkit-transform 0.2s 0s ease-out;
  transition: opacity 0.2s, box-shadow 0.3s, transform 0.2s 0s ease-out;
  transition: opacity 0.2s, box-shadow 0.3s, transform 0.2s 0s ease-out, -webkit-transform 0.2s 0s ease-out;
  -webkit-transform: none;
  transform: none;
}

.menu-button {
  background: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background-color: var(--color-background);
  border: none;
  padding: 0 8px;
  padding-right: 20px;
  height: 44px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  outline: none !important;
  background-color: transparent;
  color: var(--color-primary);
  z-index: 1;
  position: relative;
  margin-left: 7px;

}

.menu-button>img {
  border-radius: 100%;
  height: 30px;
  width: 30px;
  margin-right: 5px;
}

.menu-dropdown {
  box-shadow: 0 0 60px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  background-color: var(--color-background);
  color: var(--color-primary);
  border: 1px solid #eaeaea;
  padding: 0;
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  overflow: hidden;
  display: none;
  transition: opacity 0.2s, box-shadow 0.4s, border-radius 0.4s, -webkit-transform 0s 0.2s ease-out;
  transition: opacity 0.2s, box-shadow 0.4s, border-radius 0.4s, transform 0s 0.2s ease-out;
  transition: opacity 0.2s, box-shadow 0.4s, border-radius 0.4s, transform 0s 0.2s ease-out, -webkit-transform 0s 0.2s ease-out;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  padding-top: 44px;
  float: right;
}

.menu-dropdown .content {
  overflow: hidden;
  padding: 8px 12px 2.6666666667px;
}

.menu-dropdown .content>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.content>ul {
  background-color: var(--color-background);
}

.menu-dropdown .content>ul>li {
  list-style: none;
  font-size: 16px;
  margin: 0 0 15px;
  padding: 5px;
  text-align: right;
  cursor: pointer;
  width: 100%;
}

.menu-dropdown .content>ul>li:hover {
  background-color: var(--color-sidenav);
  color: var(--color-primary);
}

.menu-dropdown>.menu-button {
  border: none;
  color: var(--color-primary);
}

/*******************************************************************/
/******************************* Tendu ***************************/
/**************************************************************/
.link_name {
  /* padding: 12px 20px; */
  /* margin: 8px 0; */
  /* border: 3px  */
  border: 1px;
  border-style: solid;
  padding: 1em;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 25%;
  /* float: left; */

  /* box-sizing: border-box; */
}

.link_url {
  border: 1px;
  border-style: solid;
  padding: 1em;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 50%;
  /* flsoat: left; */

}

.info {
  /* height: 100%; */
  width: 50%;
  position: relative;
  z-index: 1;
  top: 0;
  /* left: 0; */
}

.left {
  float: left;
  left: 0;

}

.right {
  right: 0;
  float: right;
}

.duplicate_link {

  /* float: right; */

  line-height: 42px;
  font-size: 35px;
  font-weight: bold;
}

#close_button {
  /* float: left; */
  padding: 3px;
  font-weight: bold;

}

.radio_center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}


.notification-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
}

.notification-panel {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  min-width: 300px;
  max-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#notificationBlock {
  padding: 10px;
}

.notification-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.notification-item:hover {
  background-color: #f5f5f5;
}

.notification-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.notification-date {
  font-size: 12px;
  color: #666;
}


.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.4s;
}

/* Animate hamburger menu */
.change .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .bar:nth-child(2) {
  opacity: 0;
}

.change .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}