/*
BidCoin
app/css/bidcoin-front.css
A felhasználói oldal stíluslap
*/
/* 
    Created on : 2021.03.12., 11:47:08
    Author     : Völgesi Miklós
*/

:root {
  --box-bg-color: #fafad2;
  --box-border: goldenrod solid 2px;
  --box-shadow: #cccccc 5px 5px 5px;
  --box-radius: 5px;
  --error-bg-color: #ffeeee;
  --error-border: #ffbbbb solid 2px;
  --background-color: #ffffff;
  --menu-height: 60px;
}

@font-face {
  font-family: bidcoinTitleFont;
  /*src: url('Teko-Light.ttf') format('truetype');*/
  src: url("Cinzel-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: bidcoinMain;
  src: url("Lora-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: bidcoinLogo;
  src: url("Cinzel-ExtraBold.ttf") format("truetype");
}

body {
  font-family: bidcoinMain;
}

.menu-top {
  min-height: var(--menu-height);
  background-color: lightgoldenrodyellow;
  /*box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);*/
  box-shadow: 0px 5px 5px rgba(134, 101, 19, 0.3);
}

.content-top-margin {
  /*height: var(--menu-height);*/
  height: 95px;
}

#registrationForm label {
  margin-bottom: 0;
}

#registrationForm input {
  /*max-width: 300px;*/
  margin-bottom: 5px;
}

#registrationForm select {
  margin-bottom: 5px;
}

#updateForm label {
  margin-bottom: 0;
}

#updateForm input {
  /*max-width: 300px;*/
  margin-bottom: 5px;
}

#updateForm select {
  margin-bottom: 5px;
}

.bidcoin-title {
  font-family: bidcoinTitleFont, serif;
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
}

.bidcoin-form {
  background-color: var(--box-bg-color);
  border: var(--box-border);
  padding: 10px;
  margin: 10px;
  box-shadow: var(--box-shadow);
  border-radius: var(--box-radius);
}

.text-white {
  color: white;
}

.toast-pos {
  position: fixed;
  top: 40%;
  left: 50%;
  min-width: 300px;
  transform: translate(-50%, 0px);
  box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.75);
}

.toast-process {
  min-width: 300px;
  position: fixed;
  top: 40%;
  left: 50%;
  margin-left: -150px;
  text-align: center;
}

.toast-process-info {
  min-width: 400px;
  position: fixed;
  top: 40%;
  left: 50%;
  margin-left: -200px;
  text-align: center;
  border: #555 solid thin !important;
  box-shadow: 5px 5px 26px 0px rgba(0, 0, 0, 0.75) !important;
}

.toast-process-info-body {
  background: #ffdf7e !important;
}

.toast-header-info {
  background-color: #b0b0ff !important;
  color: black !important;
  font-weight: bold;
}
.toast-body-info {
  background-color: #e0e0ff;
}

.toast-header-alert {
  background-color: #ff8080 !important;
  color: black !important;
  font-weight: bold;
}
.toast-body-alert {
  background-color: #ffb0b0;
}

.toast-header-success {
  background-color: #b0ffb0 !important;
  color: black !important;
  font-weight: bold;
}
.toast-body-success {
  background-color: #e0ffe0;
}

.response-text {
  font-size: 1em;
  font-weight: bold;
  line-height: 200%;
  background-color: #d0ffd0;
  border: darkgreen solid 2px;
  border-radius: var(--box-radius);
  padding: 10px;
  margin: 50px;
}

.response-text-error {
  font-size: 1em;
  font-weight: bold;
  line-height: 200%;
  background-color: #ffdfdf;
  border: darkred solid 2px;
  border-radius: var(--box-radius);
  padding: 10px;
  margin: 50px;
}

.sideband {
  z-index: -1;
  height: 80vh;
  background-color: #ffffff;
}

.form-valid-error {
  outline: red solid 2px;
  /*    border-color: red;
    border-width: 2px;*/
}

.login-panel {
  margin-top: 50px;
  padding: 10px;
  background-color: var(--box-bg-color);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  border-radius: var(--box-radius);
}

.auction-input:focus {
  border-color: goldenrod !important;
  box-shadow: 0 0 0 0.2rem rgba(134, 101, 19, 0.25) !important;
}

.login-forgotten-password {
  margin-top: 20px;
  font-size: 0.9em;
}

.login-forgotten-password a {
  text-decoration: none;
}

.login-registration {
  margin-top: 20px;
  padding: 20px;
  border-top: var(--box-border);
  font-size: 1em;
}

.logged-user-name {
  text-decoration: none !important;
  color: inherit;
  margin-right: 10px;
}

.user-credit {
  margin-right: 10px;
}

.menu-button {
  font-size: 1.2rem;
  font-weight: 900;
  color: #212529;
}

#error-modal .modal-content {
  background-color: #ffdfdf;
  border: darkred solid 2px;
}

/* Aukció ajánló a képernyő tetején */
.upc-auc-background {
  background-image: url("../../app/assets/auction-background.png");
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.upc-auc-img-box {
  height: 150px; /*can be anything*/
  width: 100px; /*can be anything*/
  display: inline-block;
  vertical-align: top; /*not required*/
  position: relative;
  margin: 20px;
}
.upc-auc-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.45);
}
@media (max-width: 480px) {
  .upc-auc-img-box {
    margin-left: 0;
    margin-right: 0;
  }
  .upc-auc-img-box {
    height: 150px;
    width: 90px;
  }
}
@media (max-width: 320px) {
  .upc-auc-img-box {
    margin-left: 0;
    margin-right: 0;
  }
  .upc-auc-img-box {
    height: 150px;
    width: 80px;
  }
}

/* Tétel lista */
.item-list-header {
  font-family: bidcoinTitleFont, serif;
  font-weight: bolder;
  text-shadow: 2px 2px lightgray;
  text-align: center;
  margin: 10px;
  margin-top: 30px;
}
.item-box {
  margin: 10px;
  border: var(--box-border);
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  height: 650px;
  text-align: center;
}
.item-box:hover {
  background-color: lightgoldenrodyellow;
}
.item-img-box {
  height: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.item-img {
  width: 100%;
  height: auto;
  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.45);*/
  border-radius: 10px;
}
.item-box-coin {
  margin: 10px;
  border: var(--box-border);
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  height: 700px;
  text-align: center;
}
.item-box-coin:hover {
  background-color: lightgoldenrodyellow;
}
.item-img-box-coin {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
.item-img-coin {
  width: 400px;
  height: 400px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  object-fit: cover;
}

.item-info-box {
  width: 100%;
  height: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  padding: 15px;
}
.item-info-button {
  margin-top: 10px;
  text-align: left;
  padding-left: 30px;
}
.item-offer-input {
  margin-top: 10px;
  padding-right: 30px;
  padding-left: 0px;
}
.item-cca-price {
  font-size: 0.9em;
  font-weight: normal;
}
@media (max-width: 766px) {
  .item-box {
    height: auto;
  }
  .item-info-button {
    padding-left: 20px;
    padding-right: 20px;
  }
  .item-offer-input {
    padding-left: 20px;
    padding-right: 20px;
  }
  .item-box-coin {
    height: 750px;
  }
}
@media (max-width: 457px) {
  .item-box-coin {
    height: 650px;
  }
  .item-img-box-coin {
    height: 300px;
  }
  .item-img-coin {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 280px) {
  .item-img {
    max-height: 200px;
    max-width: 200px;
  }
}
.item-offer-button {
  background-color: #0062cc;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.item-starting-price {
  margin-top: 10px;
  text-align: left;
  font-size: 1.1em;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: bold;
}

.auction-box {
  /*    margin-top: 15px;*/
  margin-bottom: 20px;
  padding: 10px;
  border: var(--box-border);
  border-radius: 5px;
  border-color: goldenrod;
  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
  box-shadow: 0 4px 8px 0 rgba(134, 101, 19, 0.3);
}
.auction-box:hover {
  background-color: lightgoldenrodyellow;
}
.auction-box-date {
  padding: 10px;
}
.auction-box-pdf {
  width: 50px;
  margin-bottom: 15px;
}

.flashing img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.auction-img-box {
  width: 120px;
  margin: 0px;
  display: flex;
  align-items: center;
}
.auction-img {
  /*    max-height: 120px;
    max-width: 120px;*/
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.auction-info-box {
  vertical-align: top;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
}
.auction-info-box-mobil {
  width: 100%;
  display: none;
}
.auction-live-label {
  font-weight: bold;
  color: red;
  position: absolute;
  top: 20px;
  right: 36px;
  font-size: 18px;
  background-color: white;
  opacity: 0.8;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 575px) {
  .auction-box {
    padding: 5px;
  }
}
@media (max-width: 500px) {
  .auction-info-box {
    display: none;
  }
  .auction-info-box-mobil {
    display: inherit;
  }
}

.item-auction-box {
  background-color: lightgray;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  /*text-transform: uppercase;*/
  line-height: 200%;
}
.item-auction-box a {
  text-decoration: none;
  color: inherit;
}

.item-detail-img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.45);
  border-radius: 10px;
}

/*Termék adatlap kép előző gomb felülírás a szín miatt. 
A szín a fill='%23a0a0a0' részben található, az utolsó 6 karakter hexaban*/
.carousel-control-prev-icon {
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23a0a0a0' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

/*Termék adatlap kép kövtkező gomb felülírás a szín miatt. 
A szín a fill='%23a0a0a0' részben található, az utolsó 6 karakter hexaban*/
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23a0a0a0' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/*Termék adatlap kép indikátorok ne kis téglalapok legyenek, hanem körök*/
.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #a0a0a0;
}

.highest_bid {
  color: green;
}

.not_highest_bid {
  color: red;
}

/*Élő licitálás stílusok*/
.live-box {
  margin: 20px;
  padding-bottom: 20px;
  border: var(--box-border);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  /*    position: relative;
    top: 50%;
    transform: translateY(-50%);*/
}
.live-img {
  padding: 10px;
  max-height: 210px;
  max-width: 210px;
  width: auto;
  height: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
  /*border-radius: 10px;*/
  /*width: 100%; height: auto; max-width: 200px; max-height: 200px;*/
}
.live-info-box {
  width: 100%;
  height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  /*padding: 15px;*/
}
.live-hammer-off {
  color: lightgreen;
}
.live-hammer-on {
  color: red;
}
.live-price-win {
  color: green;
}
.live-price-lose {
  color: red;
}
.live-upcoming {
  margin: 20px;
  padding: 20px;
  border: var(--box-border);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.live-image-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  margin: 0 auto;
}
.live-image-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.screen-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.no-hyperlink-decoration {
  color: #212529 !important;
  text-decoration: none !important;
}

.footer {
  background-color: lightgoldenrodyellow;
  margin-top: 50px;
  padding: 10px;
  text-align: center;
  border-top: goldenrod thin solid;
}

.logo-text {
  font-family: bidcoinLogo;
  font-size: 1.5em;
  text-shadow: 2px 2px goldenrod;
  vertical-align: middle;
}

.logo-image {
  height: 50px;
  vertical-align: middle;
  filter: drop-shadow(2px 2px 2px goldenrod);
}

.header-banner {
  width: 100%;
  border: goldenrod outset medium;
}
