.navbar-default{
background: #A2238D;
}

.navbar-default .navbar-brand, .navbar-default .nav > li > a, .navbar-default .nav > li > a:hover{
color: white;
}

.navbar-default .nav > li > a:hover{
background-color: rgba(0,0,0,0.7);
}

.navbar-default .navbar-nav > .open > a:hover, .dropdown-menu > li > a:hover {
color: white;
background-color: #300A2A;

}

.navbar-default .navbar-brand:hover {
  color: white;
}




div.metric {
  text-align: center;
  margin: 0 6px 0 6px;
  height: 100%;
  padding: 10px;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
}

a.black:link {
  text-decoration: none;
  color: #000;
}

div.metric {
  text-align: center;
  margin: 0 6px 0 6px;
  height: 100%;
  padding: 10px;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
}

div.metricValueImp {
  color: #a2238d;
}

div.metricValueImp {
  padding: 0;
  font-size: 1.3em;
  margin-top: -3px;
  text-align: center;
  font-family: 'OpenSansBold', Arial;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
div.metricCol {
  padding: 6px 0 6px 0;
    padding-right: 0px;
    padding-left: 0px;
}

.nav-tabs > li > a{
    padding: 14px 20px 13px 20px;
    color: #000;
    margin: 0;
    display: inline-block;
    border-top: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    background: #ffffff;
    transition: background .3s;
    font-size: 12px;
    font-family: 'OpenSans', Arial, Tahoma, Verdana;
    }

a.rightBoxOpt {
  padding: 10px 26px 10px 26px;
  display: block;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  color: #000;
  margin-bottom: 2px;
  background: #dcdcdc;
  transition: background 0.3s;
}

div.dbLogos {
  background: #fff;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

div.dbLogos .dbLogo {
  position: relative;
  height: 100px;
  line-height: 100px;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

div.dbLogos .dbLogo img {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px 10px rgba(255,255,255,0.3);
}



/* Downloads Start */

.journal-downloads{
    width:100%;
    background:#ffffff;
    border:1px solid #d9e3e7;
    border-radius:5px;
    overflow:hidden;
    font-family:
    "Segoe UI",
    Arial,
    sans-serif;

    box-shadow:
    0 3px 12px rgba(0,0,0,0.06);
}


/* Header */
.download-header{
    background:#204E68;
    color:#ffffff;
    padding:15px 18px;
    font-size:17px;
    font-weight:600;
    letter-spacing:.2px;
}

.download-header i{
    margin-right:8px;
}


/* Download Item */
.download-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:16px;
    border-bottom:1px solid #edf1f3;
    transition:
    background .3s ease;
}

.download-item:last-child{
    border-bottom:none;
}

.download-item:hover{
    background:#f8fbfc;
}

/* File Icon */
.download-icon{
    width:48px;
    height:48px;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.word-icon{
    color:#185ABD;
    background:#eef4ff;
    border:1px solid #cddcff;
}

.pdf-icon{
    color:#b42318;
    background:#fff1f0;
    border:1px solid #ffd4d0;
}

/* Content */
.download-content{
    flex:1;
}

.download-content h4{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#263238;
}

.download-content p{
    margin:5px 0 0;
    font-size:13px;
    color:#68757d;
}

/* Download Button */
.download-btn{
    position:relative;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:9px 16px;
    background:#204E68;
    border:1px solid #204E68;
    color:#ffffff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    border-radius:4px;
    transition:
    background-color .3s ease,
    border-color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

/* Shine Animation */
.download-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:
    rgba(255,255,255,.18);
    transform:
    skewX(-25deg);
    transition:
    left .6s ease;
}

.download-btn:hover::before{
    left:130%;
}

/* Hover */
.download-btn:hover{
    background:#08484d;
    border-color:#08484d;
    color:#ffffff;
    transform:
    translateY(-2px);
    box-shadow:
    0 6px 14px rgba(13,92,99,.25);
}

/* Download Icon Movement */
.download-btn i{
    transition:
    transform .3s ease;
}

.download-btn:hover i{
    transform:
    translateY(2px);
}

.download-btn,
.download-btn:hover,
.download-btn:focus,
.download-btn:active{
    text-decoration:none;
    color:#ffffff;
}

/* Click Effect */
.download-btn:active{
    transform:
    translateY(0);
    box-shadow:
    0 2px 5px rgba(0,0,0,.15);
}

/* Mobile Responsive */
@media(max-width:600px){
    .download-item{
        flex-wrap:wrap;
    }

    .download-content{
        width:calc(100% - 65px);
    }

    .download-btn{
        width:100%;
        justify-content:center;
        margin-top:8px;
    }
}

/* Downloads End */