
html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 20px;
  background-color: #f1f1f1;
}

.page-container {
  height: 100%;
  padding-top: 56px;
  background-color: #f1f1f1;
}
 
.navbar-fit {
  background-color: #212121;
}

.navbar-fit .navbar-brand,
.navbar-fit .navbar-text {
    color: #ffffff;
}
.navbar-fit .navbar-brand.active,
.navbar-fit .navbar-brand:focus,
.navbar-fit .navbar-brand:hover,
.navbar-fit .navbar-nav .nav-link {
    color: rgba(255,255,255,.8);
}
.navbar-fit .nav-item.active .nav-link,
.navbar-fit .nav-item:focus .nav-link,
.navbar-fit .nav-item:hover .nav-link {
    color: #ffffff;
}
.navbar-toggler:focus, .navbar-toggler:active {
    outline: none;
    box-shadow: none;
  }

.custom-control-lg .custom-control-label::before,
.custom-control-lg .custom-control-label::after {
    top: 0.1rem !important;
    left: -2rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
}

.custom-control-lg .custom-control-label {
    margin-left: 0.5rem !important;
    font-size: 1rem !important;
}

.login-form {
  padding: 20px;
  width: 100%;
}

.login-container {
  max-width: 590px;
  padding-top: 56px;
  background-color: #f1f1f1;
}

.container-590 {
  max-width: 590px;
  padding-top: 56px;
  background-color: #f1f1f1;
}

.hide {
  display: none;
}

.height-frame {
  min-height: 120px;
}

.bg-sec {
  background-color: #424242;
}

.bg-pri {
  background-color: #212121;
}

.bg-f1 {
  background-color: #f1f1f1;
}

.bg-ce {
  background-color: #cecece;
}

.bg-white {
  background-color: #ffffff;
}

.bg-burned {
  background-color: rgba(25,118,210,0.6);
}

.bg-consumed {
  background-color: rgba(211,47,47,0.6);
}

.details-save-btn {
  visibility: hidden;
}

.heading-text {
  color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.pad-top {
 padding-top: 10px; 
}

.pad-bottom {
 padding-bottom: 10px; 
}

.pad-right {
 padding-right: 15px; 
}

.weight-input {
  max-width: 150px;
}

.alert-fit {
  margin-bottom: 0px;
}

.alert-dismissible {
  display: none;
}

.alert-dismissible-hold {
  display: none;
}

.unit-select:focus {
  margin-left: 3px;
}

.weight-prepend {
  width: 28%;
}


.hidden {
  display: none;
}

.bp-prepend {
  width: 33%;
}

.syn-calc-carbs {
  width: 30%;
}


.pointer {
  cursor: pointer;
}

.bp-append {
  width: 33%;
}

.syns-append {
  width: 45%;
}

.feed-item {
  padding-top: 6px;
  padding-bottom: 6px;
}

.no-pad-left {
  padding-left: 0px;
}

.no-pad-right {
  padding-right: 0px;
}

.no-pad-left-right {
  padding-left: 0px;
  padding-right: 0px;
}

.chart-container {
  padding-left: 0px;
  padding-right: 0px;
}

.color-preview {
  background-color: #212121;
  min-width: 50px;
  margin-right: 20px;
}

.notice-top {
  background-color: rgba(40,167,69,0.5);
}
.notice {
  background-color: rgba(40,167,69,0.1);
}

.a-info {
  border-bottom: 1px dashed;
}

.button {
  background-color: #212121;
  border: none;
  color: #ffffff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.button:hover {
    background-color: #424242;
}

.button-activity {
  padding: 10px 12px;
  margin: 0px;
}

.button-discard {
  padding: 10px 12px;
  margin: 0px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20px;
  line-height: 20px;
  color: #9e9e9e;
  background-color: #1e1e1e;
  font-size: 70%;
  text-align: center;
}

.footer-small {
  font-size: 75%;
}

.loader {
  position: fixed;
  border: 16px solid #424242;
  border-radius: 50%;
  border-top: 16px solid #fcfcfc;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  left:50%;
  top:50%;
  -webkit-animation: spin .5s linear infinite; /* Safari */
  animation: spin .5s linear infinite;
}
#overlay{
  position: absolute;
  top:0px;
  left:0px;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .5;
  display: none;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#meditation-start-countdown {
  margin-top: 25px;
  font-size: 700%;
  text-align: center;
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
}
#meditation-countdown {
  font-family: monospace;
  font-weight: 700;
  margin-top: 25px;
  font-size: 600%;
  text-align: center;
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

