* {
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --blue-ribbon: #0069ec;
  --dodger-blue: #25a3ff;
  --mine-shaft: #333333;
  --scorpion: #565656;
  --torch-red: #ff0033;
  --white: #ffffff;
}


body {
  font-family: Arial, sans-serif;
  width: 100%;
  padding: 0;
  margin: 0;
  }




















































.modal {
  background-color: red;
  height: 380px;
  width: 280px;
  position: absolute;
  margin-top: -20px;
  margin-left: 20px;
  }

.c-content {
  background-color: green;
  width: 100%;
  height: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
























/* The message box is shown when the user clicks on the password field */
#message {
  border-radius: 20px 20px;
  height: 80%;
  width: 80%;
  display: none;
  background: #ffffff;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message p {
  padding: 0px 25px;
  font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -5px;
  content: "✔";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -5px;
  content: "✖";
}







#confirm-logout-modal {
  background: rgba(0,0,0, 0.5);
  width: 100%;
  height: 400vh;
  position: absolute;
  margin-top: -105px;
  display: none;
}

.c-content-options {
  background-color: #ffffff;
  width: 85%;
  height: 100px;
  padding: 20px;
  margin-top: 250px;
  margin-left: 20px ;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

#logout,
#goback-login {
  background-color: transparent;
  color: dodgerblue;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 10px;
  float: right;
  margin-top: 10px;
}


#logout:active,
#goback-login:active {
  background-color: #D3D3D3;
}




.container-menu {
  top: 70px;
  display: none;
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  height: 100hv;
  font-weight: 400;
}




.item {
  background-color: #ffffff;
  margin-top: 0px;
  height: 50px;
  padding: 15px;
}

.item:active {
  background: rgba(0, 0, 0, 0.1);
}


.container-item-font {
  font-weight: 400;
  font-size: 1rem;
  padding: 10px;
  text-align: center
}





#icons-bar-container {
  width: 100vw;
  padding: 10px;
  position: fixed;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons-bar-div {
  margin: 5px;
    padding: 10px;
    border: none;
    border-radius: 12px;
    width: 100px;
    height: 50px;
    background: #ffffff;
    color: black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icons-bar-img {
  width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

.icons-bar-font {
  margin: 0;
    padding: 0;
    color: black;
    font-size: 15px;
    font-weight: 400;
}




/* CSS */
footer {
  display: none;
  margin: 30px auto;
  width: 80%;
  padding: 10px 20px;
  text-align: center;
}

footer a{
  font-size: 4.5rem;
  color: #cccccc;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}