html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*custom*/
/* Dropdown Button */
.dropbtn {
    background-color: #f4511e;
    color: white;
    padding: 7px;
    font-size: 16px;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.customdropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.customdropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.customdropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    cursor:pointer;
}

/* Change color of dropdown links on hover */
.customdropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.customdropdown:hover .customdropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.customdropdown:hover .dropbtn {
    background-color: #f4501e;
}

/* The alert message box */
.customalert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
}

/* The close button */
.customclosebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.customclosebtn:hover {
    color: black;
}
