@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
:root {
  --background: #f6f6f6;
  --background-shade: #f2f2f2;
  --bg: #05941D;
  --bg-thick: #16a32e;
  --bg-shade: #b9ffc5;
  --color: #414141;
}
* {
  font-family: 'Inter', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body {transition: all .4s ease;}
.row .col-md-5 {
  padding: 0 1rem;
}
#placeholder {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 65vh;
  overflow: hidden;
}
#placeholder img {
  min-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0; left: 50%;
  opacity: 0;
  transform: translateX(-110%);
  transition: all .6s ease;
}
#placeholder img.active {
  opacity: 1;
  transform: translateX(-50%);
}
#placeholder .toggles {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  padding: 12px;
  text-align: center;
}
#placeholder .toggles .slideToggle {
  width: 12px; height: 12px;
  box-shadow: 0 .5px 3px -1px #777;
  display: inline-block;
  background-color: rgba(255,255,255,.4);
  border-radius: 12px;
  transition: all .6s ease;
}
#placeholder .toggles .slideToggle.active {
  width: 36px;
  background-color: rgba(255,255,255,.8);
}
#popup {
  position: fixed;
  bottom: 0; right: 0; left: 0;
  z-index: 1;
}
div.line-through {position: relative; text-align: center;}
div.line-through:before {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  background-color: #e8e8e8;
  border-radius: 50%;
}
div.line-through span {
  display: inline-block;
  padding: 12px;
  background-color: #fff;
  position: relative;
}
input.form-control {padding: 12px;}
::placeholder {
  color: #999!important;
}
a {text-decoration: none;}
.btn {
  width: 100%;
  padding: 10px; 
  font-weight: bold;
}
.btn-supreme, .btn-supreme:hover, .btn-supreme:focus {
  background-color: #05941D;
  color: #fff!important;
  position: relative;
}
.btn-supreme:hover, .btn-supreme:focus, .btn-supreme:disabled, .btn-supreme:active {
  background-color: #16a32e!important;
}
.btn-supreme:after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: rotate(0deg) translate(-50%, -50%);
  animation: spin .8s linear infinite reverse, swell .6s infinite alternate;
  transition: all .6s ease;
  border-radius: 50%;
  opacity: 0;
  width: 16px; height: 16px;
  border: 2px solid #fff;
  border-right-color: transparent;
} @keyframes spin {from{ transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(359deg);}
} @keyframes swell {from{ width: 16px; height: 16px; } to {  width: 24px; height: 24px; }}
.btn-supreme:disabled:after {
  opacity: 1;
}
.btn-supreme:disabled .text {display: none;}
.text-supreme {
  color: #05941D;
}
[data-theme="dark"] {
  --background: #212529;
  background-color: var(--background);
  color: #ccc;
  --color: #ccc;
}
[data-theme="dark"] .bg-white {
  background-color: #292d32!important;
}
[data-theme="dark"] #feed {
  opacity: .1;
}
[data-theme="dark"] input.form-control {
  background-color: var(--background)!important;
  color: var(--color)!important;
  border: none;
}
@media (prefers-color-scheme: dark) {
  body:not([data-theme="light"]) {
    --background: #212529;
    background-color: var(--background);
    color: #ccc;
    --color: #ccc;
  }
  body:not([data-theme="light"]) .bg-white {
    background-color: #292d32!important;
  }
  body:not([data-theme="light"]) #feed {
    opacity: .1;
  }
  body:not([data-theme="light"]) input.form-control {
    background-color: var(--background)!important;
    color: var(--color)!important;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  .row > div {
    top: auto; left: auto; right: auto;
    overflow: auto;
  }
  .cast { box-shadow: 0 0 10px -7px #444;}
  #placeholder {
    position: relative;
    height: 100%;
  }
  #placeholder img {
    min-width: 100%;
    max-height: auto;
  }
  #placeholder .toggles {
    display: none;
  }
  #popup {
    position: static;
    display: flex;
    align-items: center;
    height: 100%;
  }
}