/* GEDEON VARIABLES */
:root {
  /* --green: rgb(35, 52, 106); */
  --green: #1ab394;
}
.loginscreen.middle-box {
  width: 400px;
  margin-top: 70px;
}
.centeredContent {
  margin: 0 auto;
  max-width: 900px;
  height: 100px;
  z-index: 1;
}

.login-card {
  /* background:  linear-gradient(to bottom, #ffffff, rgb(170, 167, 167)); */
  background: #fff;
  /* background: linear-gradient(to bottom, #fff, #fff); */

  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #e7eaec;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 6px -6px #777;
  -moz-box-shadow: 0 10px 6px -6px #777;
  box-shadow: 0 10px 6px -6px #777;
}

label.al-heading {
  /* text-transform: uppercase; */
  margin-top: 2%;
  color: #000;
}

label.al-subtitle {
  font-weight: 600;
  color: #263238;
  font-size: 12px;
}

.asterisks {
  color: red;
  font-size: 12px;
}
.asterisks-landing {
  color: red;
  font-size: 12px;
  display: block;
}

.outline-error {
  border: 1px solid red;
}
/** SELECT RADIO BUTTON ON ALL LISTING PAGE*/
.myradio-button,
.mycheckbox {
  position: relative;
  margin: 0px 0px;
  cursor: pointer;
}
.mycheckbox {
  display: block;
}

.myradio-button input,
.mycheckbox input {
  position: absolute;
  margin: 5px;
  padding: 0;
  /* for mobile accessibility (iOS Label Bug) */
  visibility: hidden;
}
.myradio-button .label-visible,
.mycheckbox .label-visible {
  margin-left: 2em;
  margin-bottom: 0;
}

.myfake-radiobutton,
.myfake-checkbox {
  position: absolute;
  display: block;
  top: 0;
  left: 3px;
  width: 20px;
  height: 20px;
  border: 1px solid slategray;
  background-color: white;
}
.myfake-radiobutton:after,
.myfake-checkbox:after {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--green);
  transform: translateX(-50%) translateY(-50%);
}

.myfake-radiobutton {
  border-radius: 50%;
}
.myfake-radiobutton:after {
  border-radius: 50%;
}

input[type="radio"]:checked + span .myfake-radiobutton:after,
input[type="checkbox"]:checked + span .myfake-checkbox:after {
  display: block;
}

/* EYE ICON LOGIC */
.p-change-viewer {
  float: right;
  margin-top: -40px;
  position: relative;
  right: 20px;
  z-index: 1;
  cursor: pointer;
}

.p-viewer {
  float: right;
  margin-top: 12px;
  position: relative;
  right: 55px;
  z-index: 1;
  cursor: pointer;
}

.fa-eye {
  color: #000;
}

.slogan h2 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 35px;
  color: rgb(35, 52, 106);
}

.cursor-pointer {
  cursor: pointer;
}

/* .auth-bg{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} */

.auth-bg {
  /* Add the blur effect */
  filter: blur(6px);
  -webkit-filter: blur(6px);

  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.auth-bg-noblur {
  /* Add the blur effect */
  /* filter: blur(6px); */
  /* -webkit-filter: blur(6px); */

  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.contentCard {
  border-radius: 50px;
  box-shadow: 0 6px 6px -3px gray;
}

/* SELECT INPUT STYLE */
.input-radius {
  border-radius: 2px !important;
}

/* SCROLL BAR STYLE  */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px var(--green);
}

.side-menu-icon {
  font-size: 16px;
  border-left: 3px solid var(--of-gold);
  border-radius: 10px;
  padding: 8px;
  background: rgb(40, 40, 40);
  width: 25%;  
}

.bid-border-bottom{
  border-bottom: 1px dashed #d5d8da;
  padding: 1.5px;
}

.active-submenu-text{
  color: var(--green) !important;
}


@keyframes rotatee {
  from{transform:rotateY(0deg)}

    to {transform:rotateY(360deg)}
  
}

.toto > span {
    animation: rotatee 6s linear infinite;
  display:inline-block;
}

.sharp-border{
  /* background-color: var(--of-black) !important; */
  /* border:1px dashed var(--of-black) !important; */
  /* color: var(--of-whithe); */
  border-radius: 15px;
  box-shadow: 0 6px 6px -3px gray;
}
.sharp-border-print-bid{
  border: 1px solid var(--of-black) !important;
  border-radius: 15px;
}

.text-of-gold {
  color: var(--of-gold);
}

.sharp-border-bid-style{
  background-color: var(--of-black) !important;
}

.content-card-v2 {
  display: grid;
  /* align-items: center; */
  padding-top: 3%;
  border-radius: 15px;
  box-shadow: 0 6px 6px -3px var(--of-gray);
  height: 65vh;
  overflow: auto;
}

.content-card-v3 {
  display: grid;
  /* align-items: center; */
  padding-top: 3%;
  border-radius: 15px;
  box-shadow: 0 6px 6px -3px var(--of-gray);
  height: 35vh;
  overflow: auto;
}

.notification-card {
  padding-top: 3%;
  margin-right: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 6px -3px var(--of-gray);
  height: 35vh;
  overflow: auto;
}

.of-icon {
  font-size: 16px;
}

/* SCROLL BAR STYLE  */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px var(--green);
}