/*
 *                          GPLv3 LICENSE INFO
 *
 * Copyright (C) 2020  Mario S. Valdes-Tresanco and Mario E. Valdes-Tresanco
 * Copyright (C) 2014  Jason Swails, Bill Miller III, and Dwight McGee
 *
 *  Project: https://github.com/Valdes-Tresanco-MS/gmx_MMPBSA
 *
 *  This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 3 as published
 * by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 */

@keyframes heart {
  0%, 40%, 80%, 100% {
    transform: scale(1.5);
  }
  20%, 60% {
    transform: scale(1.65);
  }
}
.heart {
    animation: heart 1000ms infinite;
    /*width: 48px;*/
    /*height: 48px;*/
    color: #00AB6C;
    padding-left: 10px;
    padding-right: 10px;
}
.req {
    /*background-color: rgba(255, 23, 68, .1);*/
    border-color: #ff1744;
    color:  #ff1744;
}
.req_optrec {
    color: #00bfa5;
}
.req_opt {
    color: #448aff;
}

.scale_icon_small {
    transform: scale(0.75);
}
.scale_icon_big {
    transform: scale(2.0);
}
.scale_icon_medium {
    transform: scale(1.5);
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}


.md-banner {
    background-color: var(--md-footer-bg-color);
    color: var(--md-footer-fg-color);
    overflow: hidden;
    /*height: 32px;*/
}

.title {
    width: 70px;
    height: 1.7rem;
    background-color: #F44A4A;
    color: #FFF;
    font-size: .8rem;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 1px 1px;*/
}
:root {
  --marquee-animation-duration: 10;
  --marquee-traslation: -200%;
}

.marquee {
  width: 100%;
  height: 25px;
  /*background-color: #111;*/
  color: #eee;
  overflow: hidden;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.marquee-content {
  height: 100%;
  display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
  animation: scrolling calc(var(--marquee-animation-duration) * 1s) linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrolling {
  0% { transform: translateX(100%); }
  100% { transform: translateX(calc(var(--marquee-traslation) * -1%)); }
}

.marquee-content li {
  max-height: 100%;
  font-size: 16px;
  white-space: nowrap;
  padding: 0 25px;
  font-weight: 300;
  margin: 0 10px;
}

.new-text {
  text-decoration: none;
  color: #ffffff;
}

.md-banner__inner {
    margin: 0.3rem 0.5rem;
    max-width: 100%;
}

