/**
 * wpsarojs3.css
 * WPSAR OJS 3 2020 THEME
 *
 * Original created by MCS (2011)
 * Modifications SPF (2020)
 *
 *
 */



a:hover {
  background-color: #D86422;
}

.dropdown {
  position: relative;
  display: inline-block;
}

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

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

.bottom-footer {
    display: block;
    width: 100%;
    /*background-color: #20313b;*/
    background-color: #E4E4E4;
    line-height: 1.5;
    text-align: center;
    float: left;
    font-weight: bold;
}

/* Do not display OJS/PKP Brand in footer */
.pkp_brand_footer {
    display: none;
}

/** Footer Style -- 4-column layout following WPSAR OJS 2 (2011) **/

* {
  box-sizing: border-box;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 10px;
  color: #333333;
  /*height: 300px;*/ /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}




