/*#region ROOT VARIABLES*/
:root {
  --color-primary: #0066ff;
  --color-primary-hover: #458ffd;
  --color-secondary: #03193a;
  --color-white-text: rgba(255, 255, 255, 0.658);
  --color-green: rgb(0, 209, 0);
  --color-grey: rgb(167, 167, 167);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

::placeholder {
  color: #cdcbd7;
  font-style: italic;
}

/*#endregion ROOT VARIABLES*/

/*#region TYPOGRAPHY*/
html {
  font-size: 62.5%;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--color-body);
  background: rgb(246, 246, 246);
  font-family: plasto-regular;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

@font-face {
  font-family: 'plasto-regular';
  src: url('../fonts/PlastoTrial-Regular.otf');
}
/*#endregion TYPOGRAPHY*/

/*#region FONTS*/
.font-bold {
  font-family: plasto-bold;
}

@font-face {
  font-family: 'plasto-bold';
  src: url('../fonts/PlastoTrial-ExtraBold.otf');
}

.font-highlight {
  color: var(--color-primary);
}

@font-face {
  font-family: 'dotsfont';
  src: url('../fonts/dotsfont.eot');
  src: url('../fonts/dotsfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/dotsfont.woff') format('woff'),
    url('../fonts/dotsfont.ttf') format('truetype'),
    url('../fonts/dotsfont.svg#dotsfontregular') format('svg');
}

.pass-dotted {
  -webkit-text-security: disc;
  font-family: dotsfont;
}

.error-text {
  color: red;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.element--red-text {
  color: red;
}

.text-green {
  color: var(--color-green);
}

.element--grey-text {
  color: var(--color-grey);
}

.font-white {
  color: white;
}
/*#endregion FONTS*/

/*#region ELEMENTS*/
.input-field {
  width: 100%;
  outline: 0;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem 0.1rem rgba(122, 122, 122, 0.7);
  padding: 0.95rem 1.2rem;
  font-size: 1.75rem;
  background: rgba(255, 255, 255, 0.541);
}

.input-field::placeholder {
  font-size: 1.75rem;
}

.input-field:focus {
  outline: 2px solid var(--color-primary);
}

.dropdown {
  width: 100%;
  outline: 0;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem 0.1rem rgba(122, 122, 122, 0.7);
  padding: 0.95rem 1.2rem;
  font-size: 1.75rem;
  background: rgba(255, 255, 255, 0.541);
}

.dropdown:focus {
  outline: 2px solid var(--color-primary);
}

.country-selector {
  border-radius: 0.3rem;
  background: white;
  color: var(--color-secondary);
  font-size: 1.5rem;
  padding: 0.5rem;
  border: 1px solid rgb(161, 161, 161);
  margin-right: 1rem;
}

.country-selector:focus {
  outline: 2px solid var(--color-primary);
}

.dropdown-colored {
  width: 100%;
  outline: 0;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem 0.1rem rgba(122, 122, 122, 0.7);
  padding: 0.95rem 1.2rem;
  font-size: 1.75rem;
  background: var(--color-primary);
  color: white;
}

.dropdown-colored:focus {
  outline: 2px solid white;
}

.text-area {
  width: 100%;
  outline: 0;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem 0.1rem rgba(122, 122, 122, 0.7);
  padding: 0.95rem 1.2rem;
  font-size: 1.75rem;
  background: rgba(255, 255, 255, 0.541);
}

.text-area:focus {
  outline: 2px solid var(--color-primary);
}

.date {
  width: 100%;
  outline: 0;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem 0.1rem rgba(122, 122, 122, 0.7);
  padding: 0.95rem 1.2rem;
  font-size: 1.75rem;
  background: rgba(255, 255, 255, 0.541);
}

.date::placeholder {
  font-size: 1.75rem;
}

.date:focus {
  outline: 2px solid var(--color-primary);
}

.link--white {
  color: white;
  cursor: pointer;
}

.link--white:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.link--dark {
  color: var(--color-primary);
  cursor: pointer;
}

.link--dark:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.main-background {
  background: var(--color-secondary);
  background-image: url('../images/JPG/BG.jpg');
  background-size: cover;
  width: 100%;
}

.white-background {
  background: white;
  background-image: url('../images/JPG/BG-B-1.jpg');
  background-size: cover;
  width: 100%;
}

.border-right {
  border-right: 1px solid white;
}

.input-filed__error {
  outline: 3px solid red;
}

.error-place-bid {
  text-align: center;
  margin: -1rem auto 1rem auto;
}

.error-place-bid-2 {
  text-align: center;
  margin: 1rem auto;
  max-width: 250px;
}
/*#endregion ELEMENTS*/

/*#region BOTONS*/
.btn-regular {
  border: 0;
  display: block;
  background: var(--color-primary);
  font-size: 1.9rem;
  color: white;
  text-align: center;
  white-space: nowrap;
  font-family: plasto-bold;
  border-radius: 2.5rem;
  cursor: pointer;
  margin: auto;
  padding: 1.7rem 3rem;
  box-shadow: 0 0.2rem 0.5rem 0.1rem rgb(51, 51, 51);
}

.btn-regular:hover {
  background: var(--color-primary-hover);
}

.btn-profile {
  padding: 0.75rem 3rem;
}

.btn-signup {
  padding: 1.25rem 3rem;
}

.Nav__MainLogo__TAG {
  cursor: pointer;
}

.btn-white {
  border: 0;
  display: block;
  background: white;
  font-size: 1.9rem;
  color: var(--color-secondary);
  text-align: center;
  white-space: nowrap;
  font-family: plasto-bold;
  border-radius: 2.5rem;
  cursor: pointer;
  margin: auto;
  padding: 1.7rem 3rem;
  box-shadow: 0 0.2rem 0.5rem 0.1rem rgb(51, 51, 51);
}

.btn-white:hover {
  background: rgb(206, 206, 206);
}

.small-botton-letter-size {
  font-size: 1.3rem;
}

.input-fiedld-small-lettersize {
  font-size: 1.2rem;
}

.input-fiedld-small-lettersize::placeholder {
  font-size: 1.2rem;
}

.auction-button {
  position: relative;
  font-size: 1.2rem;
  white-space: unset;
  padding: 1.5rem 1rem;
}

.messages-notifications {
  position: absolute;
  top: -5px;
  left: -5px;
  background: red;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
}

.cursor-pointer {
  cursor: pointer;
}

@media screen and (min-width: 1000px) {
  .auction-button {
    font-size: 1.75rem;
  }
}
/*#endregion BOTON*/

/*#region SPACE*/
.top-margin-5 {
  margin-top: 5rem;
}

.top-margin-3 {
  margin-top: 3rem;
}

.top-margin-2 {
  margin-top: 2rem;
}

.top-margin-1 {
  margin-top: 1rem;
}

.bottom-margin-2 {
  margin-bottom: 2rem;
}

.margin-rigt-half {
  margin-right: 0.5rem;
}

.padding-top-2 {
  padding-top: 2rem;
}

.padding-bottom-1 {
  padding-bottom: 1rem;
}

.padding-2 {
  padding: 2rem;
}

.padding-left-right-1 {
  padding: 0 1rem;
}

.padding-left-right-dot25 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.display-flex {
  display: flex;
}

.max-width-100 {
  max-width: 100px;
}

.element-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.display-flex-centered {
  display: flex;
  align-items: center;
}

.display-flex-align-end {
  display: flex;
  justify-content: flex-end;
}

.text-centered {
  text-align: center;
}

.default-screen {
  padding: 0 1rem 10rem 1rem;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.medium-screen {
  padding: 1rem;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.large-screen {
  padding: 0 1rem 10rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.extralarge-screen {
  padding: 15rem 1rem 10rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.height-100 {
  height: 100%;
}

.width-100 {
  width: 100%;
}

.position-relative {
  position: relative;
}

.whitespace-unset {
  white-space: unset;
}

.text-white-low {
  color: var(--color-white-text);
}

.segment-header {
  font-family: plasto-bold;
  font-size: 3rem;
  text-align: center;
  color: white;
  padding: 15rem 0 2rem 0;
}

@media screen and (min-width: 350px) {
  .segment-header {
    font-size: 5rem;
  }
}

@media screen and (min-width: 600px) {
  .segment-header {
    font-size: 7rem;
  }
}
/*#endregion SPACE*/

/*#region NAVBAR*/
.nav-bar-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
}

.nav-bar-main {
  box-shadow: 0 0.5rem 0.8rem 0.3rem rgba(174, 174, 174, 0.263);
  background: white;
  display: flex;
  justify-content: space-around;

  padding: 1.25rem 0rem;
}

.sub-menu-back {
  background: rgb(190, 190, 190);
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  padding: 1rem 0 3rem 0;
  border-radius: 0 0 2rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.637);
}

.nav-bar-login {
  font-size: 1.9rem;
  font-family: plasto-bold;
  margin-right: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
}

.nav-bar-login:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.nav-bar-main-logo {
  width: 270px;
  display: none;
}

.nav-language-selector {
  border-radius: 0.3rem;
  background: white;
  color: var(--color-secondary);
  font-size: 1.5rem;
  padding: 0.5rem;
  border: 1px solid rgb(161, 161, 161);
  margin-right: 1rem;
  display: none;
}

.nav-profile-container {
  background: rgba(255, 255, 255, 0.253);
  height: 40px;
  width: 40px;
  border-radius: 20px;
  margin-right: 0.5rem;
}

.nav-separator-line {
  border-left: 1px solid var(--color-secondary);
  height: 40%;
  margin: 0 2rem;
  display: none;
}

.submenu-button {
  color: var(--color-secondary);
  font-size: 1.6rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.submenu-button:hover {
  background: var(--color-primary);
  color: white;
}

.submenu-outer {
  width: 100%;
  max-width: 1728px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 auto;
}

.submenu-profile-image {
  background: rgba(255, 255, 255, 0.253);
  height: 50px;
  width: 50px;
  border-radius: 25px;
  margin: 0 1rem 1rem 1rem;
}

.submenu-username {
  font-size: 1.7rem;
  color: var(--color-secondary);
}

.submenu-middle {
  background: white;
  display: flex;
  flex-direction: column;
}

.submenu-middle-image {
  height: 20px;
  width: 20px;
  border-radius: 10px;
  margin-right: 1rem;
}

.balance-part-back {
  font-size: 1.6rem;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.balance-button {
  margin-left: 0.5rem;
  width: 12.5px;
  cursor: pointer;
}

.navbar-close-area {
  /* background: rgba(0, 0, 0, 0.3);*/
  height: 100vh;
}

@media screen and (min-width: 350px) {
}

@media screen and (min-width: 600px) {
  .nav-bar-main {
    padding: 1.25rem 3rem;
    justify-content: space-between;
  }

  .nav-bar-main-logo {
    display: initial;
  }

  .small-botton-letter-size {
    font-size: 1.9rem;
  }

  .input-fiedld-small-lettersize {
    font-size: 1.75rem;
  }

  .input-fiedld-small-lettersize::placeholder {
    font-size: 1.75rem;
  }

  .submenu-outer {
    justify-content: flex-end;
    padding: 0 3rem 0 0;
  }
}

@media screen and (min-width: 700px) {
  .nav-bar-main {
    width: 98%;
    max-width: 1728px;
    margin: 1.5rem auto 0 auto;
    border-radius: 3rem;
  }
}

@media screen and (min-width: 1070px) {
  .nav-language-selector {
    display: initial;
  }

  .nav-separator-line {
    display: initial;
  }

  .nav-bar-main {
    width: 90%;
    padding: 1.25rem 12rem;
  }

  .submenu-outer {
    width: 90%;
  }
}
/*#endregion NAVBAR*/

/*#region FOOTER*/
.footer {
  background: #2a3640;
  color: white;
}

.footer--column {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer--list {
  display: flex;
  flex-direction: column;
}

.footer--title {
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 600;
  padding: 3rem 0 1.1rem 0;
}

.footer--element {
  font-size: 1.4rem;
  font-weight: 0;
  padding: 0 0 1rem 0;
}

.nav__line {
  border-bottom: 1px inset #969696;
  opacity: 0.2;
  box-shadow: 0 0 0.5px 0.1px grey;
}

.footer-language-selector {
  border-radius: 0.3rem;
  background: white;
  color: var(--color-secondary);
  font-size: 1.5rem;
  padding: 0.5rem;
  border: 1px solid rgb(161, 161, 161);
  margin-right: 1rem;
}

.footer--copyright {
  background: #232323;
  padding-bottom: 120px;
  color: white;
  font-size: 1.2rem;
  padding: 2rem 0.5rem 0 0.5rem;
}

.footer--copyright__flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright--element {
  margin-right: 2rem;
}

.footer--logo-part {
  padding: 2rem 0 4rem 0;
  display: flex;
  justify-content: center;
}

.footer-logo {
  width: 120px;
  padding-right: 2rem;
  cursor: pointer;
}

.footer-top {
  padding: 4rem 0.5rem;
}

@media screen and (min-width: 460px) {
  .footer--column {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .footer--title {
    padding: 0 0 1.1rem 0;
  }

  .footer__main-logo {
    display: initial;
  }
}

@media screen and (min-width: 1150px) {
  .footer--column {
    display: flex;
    justify-content: space-evenly;
    padding: 0 10rem;
  }
}
/*#endregion FOOTER*/

/*#region POPUPS*/
.popup-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.popup-window {
  width: 100%;
  min-height: 100%;
  background: var(--color-secondary);
  color: white;
  border-radius: 2rem;
  padding: 2rem 2rem 4rem 2rem;
  z-index: 30;
  border: 1px solid white;
}

.exit-button {
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
}

.popup-title {
  font-size: 2.2rem;
  text-align: center;
}

.popup-text {
  font-size: 1.75rem;
}

.popup-instructions {
  text-align: center;
  font-size: 1.75rem;
  margin: 3rem 0;
}

.popup-resend-code {
  text-align: center;
  cursor: pointer;
  font-size: 2rem;
}

.popup-code-text {
  padding-top: 3rem;
  font-size: 2.2rem;
}

.popup-button {
  width: 100%;
  max-width: 300px;
}

.popup-forgot-pin {
  cursor: pointer;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.popup-winners-part {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
  text-align: center;
  padding-top: 1rem;
}

.popup-explanation-text {
  font-size: 1.3rem;
  color: var(--color-white-text);
  font-style: italic;
  padding: 1rem 0 0.5rem 0;
}

.register-checkbox {
  width: 25px;
  height: 25px;
}

.register-term {
  color: white;
  font-size: 1.25rem;
  padding-left: 1rem;
}

@media screen and (min-width: 600px) {
  .popup-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 0;
    max-width: 600px;
  }
}

/*#endregion POPUPS*/

/*#region NEXT PREVIOUS BUTTONS*/
.nexprevious--main-margin {
  width: 100%;
  margin: 0 auto;
  padding-top: 3rem;
}

.next-previous-segment {
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
}

.next-previous-segment__innner {
  width: 100%;
  max-width: 550px;
  display: flex;
  justify-content: space-between;
}

.btn--regular__nextPrevious {
  outline: 0;
  border: 1px solid black;
  border-radius: 0.25rem;
  background: white;
  color: black;
  padding: 0.5rem 0.85rem;
  font-weight: 500;
  font-size: 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 0.1rem 0.15rem grey;
}

.btn--regular__nextPrevious:hover {
  background: rgb(230, 229, 229);
}

.btn__with-image {
  display: flex;
}

.btn__with-image--image {
  width: 40px;
  padding-right: 1rem;
}

@media screen and (min-width: 400px) {
  .btn--regular__nextPrevious {
    padding: 1.5rem 3rem;
  }
}
/*#endregion NEXT PREVIOUS BUTTONS*/

/*#region SHARE*/
.share--background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 30;
}

.share--container {
  width: 100%;
  padding: 3rem 3rem;
  z-index: 30;
  min-height: 100%;
}

.share-header {
  color: white;
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.share-header__exit {
  width: 30px;
  height: 30px;
}

.share--image {
  border-radius: 50%;
}

.share--title {
  color: var(--color-white-text);
  font-size: 1.3rem;
  font-weight: 100;
  height: 20px;
  justify-content: flex-start;
}

.share--embed-background {
  background: rgb(243, 243, 243);
  border-radius: 5px;
  padding: 1.25rem 2.25rem;
  border: solid 0.1rem gray;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.share--embed-text {
  color: black;
  font-size: 1.3rem;
  border: none;
  overflow: auto;
  outline: none;
  background: none;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.share--text {
  background: rgb(243, 243, 243);
  border-radius: 5px;
  padding: 1.25rem 2.25rem;
  border: solid 0.1rem gray;
  display: flex;
  justify-content: space-between;
}

.share--link-text-main {
  color: black;
  font-size: 1.3rem;
}

.share--copy-text {
  color: blue;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.share--icon {
  width: 100%;
  max-width: 30px;
  cursor: pointer;
}

.share--gray-text {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.share--line {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
}

.main-share-title {
  font-size: 3rem;
}

.share-icons-container {
  display: flex;
  align-items: center;
  overflow: auto;
  text-align: center;
  margin-bottom: 2rem;
  justify-content: space-between;
}

.share-image {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.selected--text {
  color: white;
  background: #0073ff;
}

.help-icon {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  cursor: pointer;
}

.help-text-global {
  font-size: 1.3rem;
  color: white;
}

@media screen and (min-width: 1150px) {
  .share--container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 550px;
    padding: 3rem 3rem;
    min-height: 0;
  }
}
/*#endregion SHARE*/

/*#region LOADER*/
.large-loader-back {
  display: flex;
  justify-content: center;
}

.loader-parent {
  display: flex;
  justify-content: center;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-transform: none;
}

.loader__on-button {
  width: 50px;
  height: 50px;
}

.loader__large {
  /*width: 200px;
  height: 200px;*/
  margin: 5rem auto;
}

.loading-text-large {
  color: white;
  font-size: 2rem;
  padding-top: 1rem;
}

.error-message-background-large {
  width: 100%;
  min-height: 450px;
  background: gold;
}

.error-message--image {
  max-width: 170px;
  width: 100%;
  margin-top: 2rem;
}

.error-message--header {
  color: white;
  padding: 2rem 1rem 0 1rem;
  font-size: 3rem;
  text-align: center;
}

.error-message--sub-header {
  color: var(--color-white-text);
  padding: 2rem 1rem 0 1rem;
  font-size: 2rem;
  text-align: center;
}

.text-color-secondary {
  color: var(--color-secondary);
}

@keyframes loader {
  0% {
    left: -100%;
  }
  100% {
    left: 110%;
  }
}
.box {
  width: 50%;
  height: 50%;
  background: #fff;
  animation: animate 0.5s linear infinite;
  border-radius: 3px;
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3%;
  }
  25% {
    transform: translateY(9%) rotate(22.5deg);
  }
  50% {
    transform: translateY(18%) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40%;
  }
  75% {
    transform: translateY(9%) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
.shadow {
  width: 50%;
  height: 5%;
  background: #000;
  opacity: 0.1;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
  margin-top: 8%;
}
@keyframes shadow {
  50% {
    transform: scale(1.2, 1);
  }
}

/*#endregion LOADER*/

/*#region SECOND LOADER*/
.spinner {
  width: 80px;
  display: flex;
  flex-wrap: wrap;
  animation: spinning 2s linear 0s infinite;
}

.petal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 4px;
  animation: scaling 1.5s linear infinite;
}

#p1 {
  background: var(--color-primary); /* yellow */
  border-bottom-right-radius: 0;
  transform-origin: bottom right;
}

#p2 {
  background: white; /* pink */
  border-bottom-left-radius: 0;
  transform-origin: bottom left;
  animation-delay: 0.5s;
  outline: 1px solid var(--color-secondary);
}

#p3 {
  background: white; /* blue */
  border-top-right-radius: 0;
  transform-origin: top right;
  animation-delay: 1.5s;
  outline: 1px solid var(--color-secondary);
}

#p4 {
  background: var(--color-primary); /* red */
  border-top-left-radius: 0;
  transform-origin: top left;
  animation-delay: 1s;
}

@keyframes spinning {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scaling {
  50% {
    transform: scale(1.2);
  }
}

/*#endregion SECOND LOADER*/

/*#region CAROUSEL*/
.auction-banner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 422px;
  max-width: 800px;
  background: rgba(128, 128, 128, 0.301);
  margin: 0 auto;
}

.carousel--back {
  background: #020c24a1;
  box-shadow: 0 0 2rem 0.5rem #000000;
}

.carousel-main-segment {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.carousel-main-segment-row {
  padding: 2rem 3rem 3.5rem 3rem;
}

.carousel-header-title {
  color: white;
  font-size: 4.5rem;
  font-weight: 600;
}

.carousel-logo-question {
  display: flex;
  align-items: flex-end;
}

.carousel-heder-logo {
  width: 100%;
  max-width: 405px;
}

.carousel-header-text {
  color: var(--color-white-text);
  font-size: 2.025rem;
  padding: 4rem 0 2rem 0;
  font-weight: 400;
  line-height: 3.6rem;
}

.carousel-header-logo-small {
  width: 100%;
  max-width: 157px;
  padding-bottom: 1rem;
}

.carousel-header-line {
  font-size: 1.8rem;
  font-weight: 400;
  padding-left: 3rem;
}

.carousel-header-number {
  font-weight: 900;
  color: var(--color-primary);
}

.carousel--input-field {
  outline: 0;
  border: 0;
  width: 100%;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.5rem 0.15rem rgba(122, 122, 122, 0.7);
  padding: 1.2rem 1.2rem;
  font-size: 1.75rem;
  margin: 0 0 3rem 0;
  max-width: 400px;
  margin: 1rem auto 2rem auto;
}

.carousel--input-field::placeholder {
  font-size: 1.75rem;
  color: rgb(133, 133, 133);
}

.carousel--input-field:focus {
  outline: 2px solid var(--color-primary);
}

.carousel--error__notification {
  font-size: 1.3rem;
  padding-top: 0.3rem;
  height: 30px;
  color: red;
}

.carousel-panel {
  border-radius: 3rem;
  /*background: #00000063;*/
}

.carousel-control-hover {
  visibility: hidden;
}

.carousel-panel:hover .carousel-control-hover {
  visibility: visible;
}

.carousel-buttons-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 5rem;
  row-gap: 5rem;
  padding: 3rem 2.5rem 0rem 2.5rem;
  border-top: 1px solid rgb(78, 78, 78);
}

.carousel-buttons-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.carousel-image-container {
  width: 100%;
  /*height: 425px;*/
  height: 565px;
  margin-bottom: 3rem;
}

.carousel-text {
  line-height: 3.6rem;
  color: var(--color-white-text);
  font-size: 2.5rem;
  font-weight: 600;
  padding: 0.5rem 2rem 0 2rem;
  min-height: 200px;
}
.carousle-text-main-word {
  font-size: 4rem;
  color: var(--color-primary);
}

.carousel-select-circle {
  outline: 1px solid gray;
  display: flex;
}

.carousel-back-one {
  background-image: url('../images/SVG/carouselback1.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-back-two {
  background-image: url('../images/SVG/carouselback2.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-back-three {
  background-image: url('../images/SVG/carouselback3.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.rotating-text {
  max-height: 0;
  opacity: 0;
  transition: opacity 0.5s linear, max-height 0s linear;
}

.rotating-text-visible {
  max-height: 100%;
  opacity: 1;
}

.bidscreen--element-background-dark {
  border-radius: 0.5rem;
  border: 1px solid var(--color-primary);
  margin-top: 0.1rem;
  position: relative;
}

.bidscreen--element-background-code {
  background: #01081abe;
  padding: 0.2rem 0.5rem;
  text-align: center;
  position: absolute;
  right: 0;
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
}

.btn--open-embed {
  padding: 1rem 1rem;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  white-space: unset;
}

.bidscreen-code-title {
  font-size: 1rem;
  color: white;
}

.bidscreen-code-text {
  font-size: 1.3rem;
  color: white;
}

.carusel-inner-element-style {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 422px;
  max-width: 800px;
}

@media screen and (min-width: 500px) {
  .bidscreen--element-background-code {
    padding: 0.2rem 5rem;
    border-radius: 3rem;
    margin: 1rem 1rem 0 0;
  }

  .bidscreen-code-text {
    font-size: 2rem;
  }

  .btn--open-embed {
    margin: 1rem 0 0 1rem;
  }
}

@media screen and (min-width: 1000px) {
  .carousel-main-segment {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 650px) {
  .carousel-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*#endregion CAROUSEL*/

/*#region LOGIC*/
.hidden {
  visibility: hidden;
}

.off {
  display: none;
}
/*#endregion LOGIC*/
