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

/*--ACCORDION--*/
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

/*--BACKGROUND--*/
.dark { background-color: #0071A7; }
.color {background-color: #55A0C4; }
.light { background-color: #AAD0E2; }
.white { background-color: white; }

/*--BOTTOMBAR--*/
.bottomBar {
    overflow: none;
    color: white;
    text-align: center;
    margin-top: 10px;
    bottom: 0%;
    position: absolute;
    width: 100%;
    margin: auto;
}

/*--BUTTON--*/
.btn {
    background-color: inherit;
    border: none;
}

.btn:hover {
    cursor: pointer;
    opacity: 50%;
}

/*--CARD--*/
.card {
    width: 100%;
    border-radius: 15px;
    border-style: solid;
    border-width: 1px; 
}
.card img {
    padding: 10px;
    width: 95%;
    border-radius: 15px;
    text-align: center;
}

/*--CHIP--*/
.chip { display: inline-block; padding: 0 25px; height: 50px; font-size: 16px; line-height: 50px; border-radius: 25px; background-color: #009999; color: white}
.chip:hover { background-color: #ddd; color: black; cursor: pointer; }
.chip img { float: left; margin: 0 10px 0 -25px; height: 50px; width: 50px; border-radius: 50%; }

/*--container--*/
.con-p { padding: 2px 16px; }

.con-mes {
    padding: 8px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px black solid;
}

.con-img {
    position: relative;
    font-family: Arial;
}

.text-block {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: black;
    opacity: 50%;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

/*--DISPLAY--*/
.flex {
    display: flex;
}

/*--float--*/
.left { float: left; }
.right { float: right; }

/*--header--*/
.header {padding-bottom: 10px; }

/*--MAIN--*/
.main {
    display: flex;
    width: 80%;
    margin: auto;
}

/*--margin--*/
.center { margin: auto; }

/*--MODAL--*/
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

/*--PADDING--*/
.pad-p { padding: 5px; }
.pad-m { padding: 10px; }

/*--text--*/
.tblack { color: black; }
.tcenter { text-align: center; }

/*--TOPBAR--*/
.topbar {
  overflow: hidden;
}

.topbar a {
  float: left;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topbar a:hover {
    cursor: pointer;
    background-color: #CCC;
    color: black;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 20px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

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

.dropdown-content a {
    font-size: 15px;
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover, .dropbtn:hover {
  background-color: #CCC;
  color: black;
  cursor: pointer;
}

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

/*--width--*/
.wid-15 {
    width: 15%;
}

.wid-20 {
    width: 20%;
}

.wid-30 {
    width: 30%;
}

.wid-60 {
    width: 60%;
}

.wid-80 {
    width: 80%;
}

.wid-90 {
    width: 90%;
}