/* Colors:
#454851
#9EBC9F
#6B9AC4
*/
:root {
  --profile-picture-url: url("../images/lironcardimages/lironface.jpg");
  --body-background-image: linear-gradient(135deg, #000000 0%, #606263 100%);
  --header-border-bottom: rgb(255, 215, 0) 4px solid;
  --header-background-img: url("../images/lironcardimages/black-gold-geometric-patterns-09.jpg");
  --h1-text: "Liron Feldman";
  --h1-color: rgb(255, 215, 0);
  --h1-font-size: 3.6rem;
  --h1-font-weight: bold;
  --h1-text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  --p-text: "Web Developer";
  --p-color: rgb(255, 215, 0);
  --p-font-size: 1.8rem;
  --p-font-weight: 600;
  --p-text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  --profilepicture-boxshadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --profilepicture-border: 5px solid rgb(75, 75, 75);
  --td-background-color: rgba(0, 0, 0, 0.2);
  --td-border-radius: 5px;
  --td-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  --td-border: rgb(255, 215, 0, 0.8) 2px solid;
  --td-hover-background-color: rgb(255, 215, 0);
  --td-hover-border: black 2px solid;
  --choice-ui-border-radius: 15px 15px 0px 0px;
  --choice-ui-background-color: rgba(0, 0, 0, 0.8);
  --choice-ui-box-shadow: -1px 0px 44px 6px rgba(0, 0, 0, 0.6);
  --choice-ui-border-top-background-color: rgb(75, 75, 75);
  --choice-ui-border-top-border-radius: 0px 0px 15px 15px;
  --choice-border-bottom: rgba(255, 215, 0, 0.3) 2px solid;
  --choicep-color: rgb(255, 215, 0);
  --choicep-font-weight: 600;
  --choicep-text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  --choicep-font-size: 2rem;
  --td-width: 9rem;
  --td-height: 7.5rem;
  --rowbtn-width: 20rem;
  --rowbtn-height: 8rem;
  --rowbtn-border-radius: 0;
  --rowbtn-link-color: white;
  --rowbtn-link-font-size: 0.6rem;
}

.card-body {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1.2px;
  text-align: center;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  background-image: var(--body-background-image);
  height: 620px;
  width: 300px;
  display: block;
  border-radius: 55px;
  border: #000000 10px solid;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  position: relative;
  overflow: hidden;
  transition: 0.8s all ease;
  z-index: 101;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
.left--small {
  transform: translateX(-8px);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-header,
.card-header-2 {
  display: block;
  /* height: 120px; */

  border-bottom: var(--header-border-bottom);
  /* background-image: linear-gradient(c 0%, #51346d 100%);
  /* background-attachment: fixed; */
  /* animation: headerScroll 2s; */
  background-image: var(--header-background-img);
  background-position: center;
  background-size: cover;

  --scroll-offset: 120px;
  height: var(--scroll-offset);
  cursor: pointer;
}

.card-h1 {
  margin: 0 auto;
  font-size: calc(var(--h1-font-size) / 1.7);
  font-weight: var(--h1-font-weight);
  color: var(--h1-color);
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
  text-shadow: var(--h1-text-shadow);
  background-color: transparent;
  text-align: center;
  width: 100%;
  outline: none;
  border: none;
}
.card-h1:focus {
  outline: none;
}

.card-p {
  margin: 10px 0 0;
  font-size: calc(var(--p-font-size) / 1.7);
  /* calc quarries */
  color: var(--p-color);
  font-weight: var(--p-font-weight);
  text-shadow: var(--p-text-shadow);
  background-color: transparent;
  text-align: center;
  width: 100%;
  outline: none;
  border: none;
}

#profile-picture {
  background-image: var(--profile-picture-url);
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto -70px;
  display: block;
  object-fit: cover;
  box-shadow: var(--profilepicture-boxshadow);
  border: var(--profilepicture-border);
  transition: transform 0.3s;
  transform: translate(0px, -40%);
  background-color: #000000d0;
  cursor: pointer;
}

#profile-picture:hover {
  /* transform: scale(1.05) translate(0px, -40%); */
}

table {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 20px;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
tbody {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
td {
  /* padding: 1rem 2rem; */
  background-color: var(--td-background-color);
  border-radius: var(--td-border-radius);
  box-shadow: var(--td-box-shadow);
  transition: transform 0.3s;
  border: var(--td-border);
  width: calc(var(--td-width) / 2);
  height: calc(var(--td-height) / 2);
  display: flex;
  justify-content: center;
}

td:hover {
  transform: translateY(-5px);
  background-color: var(--td-hover-background-color);
  border: var(--td-hover-border);
}

a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: color 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
td a {
  transform: scale(1.5);
}
a svg {
  transform: scale(0.66);
}

td:not(.easylink-btn):hover a {
  color: black ;
}
td.easylink-btn a {
  color: inherit !important;
}
tr {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.rowbtn-btn,
.rowplusbtn-btn {
  width: calc(var(--rowbtn-width) / 2.2);
  height: calc(var(--rowbtn-height) / 2.2);
  border-radius: var(--rowbtn-border-radius);
}
.rowbtn-btn a,
.rowplusbtn-btn a {
  color: var(--rowbtn-link-color);
  font-size: var(--rowbtn-link-font-size);
}
/* Choices */
.choice-btn::after {
  content: url(../images/up-arrow-svgrepo-com.svg);
  position: absolute;
  transform: scale(0.025);
  top: -390px;
  left: -340px;
}
.choice-btn {
  position: relative;
}

.card-choice-ui {
  border-radius: var(--choice-ui-border-radius);
  position: absolute;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 200px;
  background-color: var(--choice-ui-background-color);
  box-shadow: var(--choice-ui-box-shadow);
  transform: translateY(102%);
  display: none;
  transition: 0.22s ease;
}

.choice-ui-open .card-choice-ui {
  display: block;
  transform: translateY(0);
  transition: 0.22s ease;
}
.choice-ui .choice-ui-border-top {
  width: 60%;
  height: 5%;
  background: var(--choice-ui-border-top-background-color);
  margin: auto;
  border-radius: var(--choice-ui-border-top-border-radius);
  box-shadow: none;
}
.card-choice-ui .choice-close-btn,
.card-choice-ui .choice-back-btn {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer;
}
.choice-close-btn {
  position: absolute;
  /* content: url(img/x-symbol.svg); */
  /* background-color: rebeccapurple; */
  right: 4px;
  top: 4px;
  width: 62px;
  height: 62px;
  justify-content: space-around;
  align-items: normal;
}
.choice-close-btn svg {
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(12px);
}
.choice-back-btn {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 62px;
  height: 62px;
  justify-content: space-around;
  align-items: normal;
}
.choice-back-btn svg {
  width: 4.2rem;
  height: 4.2rem;
  transform: translateY(0);
}
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.2rem auto;
  height: 156px;
  width: 80%;
  padding: 0.6rem 1.2rem 0rem 1.2rem;
  overflow-y: scroll;
  /* box-shadow: #0000005b 0px 0px 16px 4px; */
  /* border: #50505031 1px solid; */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.choice-list::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}
.choice-list:has(.choice-btn-input),
.choice-list:has(.choice):not(:has(.choice1)) {
  box-shadow: inset #00000069 0px 0px 15px 4px;
  border-radius: 14px;
  border: #0000005e solid 2px;
  transition: all 0.4s ease-in;
}
.choice-list:has(.choice-btn-input) {
  height: 60%;
}
.choice-btn-input-container {
  display: flex;
  align-items: center;
  flex-direction: column;

  gap: 0.2rem;
}
.action-btn-container {
  width: 90%;
  margin: 4px auto;
  display: flex;
  gap: 20px;
}
.action-btn {
  width: 100%;
  height: 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 14px;
  /* background-color: #00000000; */
  color: var(--h1-color);
  /* border: rgba(255, 255, 255, 0.171) 2px solid; */
  box-shadow: rgba(255, 255, 255, 0.04) 0px 1px 1px inset, rgba(0, 0, 0, 0.192) 0px 6px 12px;
      background: radial-gradient(circle at center top, rgb(34, 34, 34) 0%, rgb(27, 27, 27) 60%, rgb(22, 22, 22) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.06);
}
.confirm-btn {
  /*newStyle  */
  width: 100%;
  height: 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
 background-color: #007bff;
    color: white;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
}

.action-btn-confirm3 {
  width: 70%;
  margin: 0.8rem auto;
  padding: 0.8rem;
}

.choice {
  display: flex;
  justify-content: center;
  border-bottom: var(--choice-border-bottom);
}
.choice1 {
  margin-top: 0.8rem;
}
.choice p {
  font-size: calc(var(--choicep-font-size) / 1.8);
  white-space: nowrap;
  color: var(--choicep-color);
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-weight: var(--choicep-font-weight);
  text-shadow: var(--choicep-text-shadow);
}
.choice svg {
  transform: scale(0.8);
}
.choice-btn-input-p {
  font-family: "rubik" sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.6rem 0rem -1rem 0rem;
  color: var(--h1-color);
  text-shadow: var(--h1-text-shadow);
}
.choice-btn-input {
  text-align: left;
  font-size: 0.8rem;
  height: 2rem;
  width: 75%;
  padding: 0rem 1.2rem 0rem 1.2rem;
  font-weight: 600;
  color: var(--h1-color);
  margin: 0.4rem 0rem 0.2rem 0rem;
  text-shadow: var(--h1-text-shadow);
  outline: none;
  border: none;
  background-color: transparent;
  box-shadow: inset #000000 0px 0px 15px 4px;
  border-radius: 12px;
  text-overflow: ellipsis;
  direction: rtl;
}
.choice-btn-input::placeholder {
  color: gainsboro;
  opacity: 0.7;
}
.input-invalid {
  box-shadow: rgba(255, 0, 0, 0.401) 0px 0px 10px 7px;
  border: black solid 1px;
}
/* NFC CARD */
/* Cololr picks */
.choice-list:has(.color-picker-container) {
  box-shadow: inset #00000069 0px 0px 15px 4px;
  border-radius: 14px;
  border: #0000005e solid 2px;
  transition: all 0.4s ease-in;
}
/* .color-picker-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
} */
/* .color-choice {
  border-bottom: var(--choice-border-bottom);
} */
/* .color-choice label {
  font-family: "rubik" sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.6rem 0rem -1rem 0rem;
  color: var(--h1-color);
  text-shadow: var(--h1-text-shadow);
}
input[type="color"] {
  -webkit-appearance: none;
  appearance: none;
  color: rgb(220, 220, 220);
  width: 80%;
  height: 32px;
  box-shadow: #000000 inset 0px 0px 2px 2px;
  border: black 2px solid;
  /* transform: translate(0, -10px); */
/* } */
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
}
*/
/* #color-picker {
  width: 0;
  height: 0;
  opacity: 0;
}

.selected-color {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
} */
.choice-list:has(.option) {
  /* gap: 1.2rem; */
  box-shadow: inset #00000069 0px 0px 15px 4px;
  border-radius: 14px;
  border: #0000005e solid 2px;
  transition: all 0.4s ease-in;
}
