:root {
    --shadow-color: #4b4b4b;
    --shadow-color2: #d1d1d1;
}

.icon {
    cursor: pointer;
    transition: 0.2s;
}

.icon:hover {
    transform: scale(1.2);
    transition: 0.2s;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  }
  #upload-img, #reset-img {
  top: 20px;
  cursor: pointer;
  z-index: 10;
  }
  #upload-img {
  right: 20px;
  }
  #reset-img {
  right: 80px;
  }
  #file-input {
  display: none;
  }

/*------ Style 1 ------*/
.style1 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}
.style1::-webkit-color-swatch {
  border-radius: 15px;
  border: none;
}
.style1::-moz-color-swatch {
  border-radius: 15px;
  border: none;
}
.style1:hover{
    transform: scale(1.1);
    transition: 0.5s;
}


.color-picker {
    position: relative;
}

.color-palette {
    display: none;
    position: absolute;
    /* Styling for color palette */
}

.color-option {
    width: 20px;
    height: 20px;
    /* Styling for color options */
}

body {
  top: 50%;
  font-family: arial;
  color: #4c4c4c;
  text-align: center;
}

.center {
  position: relative;
  margin-top: 40%;
  margin-bottom: 50%;
}

.searchbar { font-size: 14px; font-family: arial, sans-serif; color: #202124; display: flex; z-index: 3; height: 44px; background: rgba(255, 255, 255, 0.54); backdrop-filter: blur(40px); border: 1px solid rgba(255, 255, 255, 0.78); box-shadow: none; border-radius: 24px; margin: 0 auto; min-width: 200px; width: auto; max-width: 100px; transition: 0.5s; margin-top: 7px } .searchbar:hover { box-shadow: 0 1px 6px var(--theme-color); border-color: rgba(223,225,229,0); transition: 0.5s; }

.searchbar-wrapper {
  flex: 1;
  display: flex;
  padding: 5px 8px 0 14px;
}

.searchbar-left {
  font-size: 14px;
  font-family: arial, sans-serif;
  color: #202124;
  display: flex;
  align-items: center;
  padding-right: 13px;
  margin-top: -5px;
}

.search-icon-wrapper {
  margin: auto;
}

.search-icon {
  margin-top: 3px;
  color: #9aa0a6;
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.searchbar-icon {
  display: inline-block;
  fill: currentColor;
  height: 24px;
  line-height: 24px;
  position: relative;
  width: 24px;
}

.searchbar-center {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.searchbar-input-spacer {
  color: transparent;
  flex: 100%;
  white-space: pre;
  height: 35px;
  font-size: 16px;
}

.searchbar-input {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, .87);
  word-wrap: break-word;
  outline: none;
  display: flex;
  flex: 100%;
  margin-top: -37px;
  height: 34px;
  font-size: 16px;
  max-width: 100%;
  width: 100%;
}

.searchbar-input {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, .87);
  word-wrap: break-word;
  outline: none;
  display: flex;
  flex: 100%;
  margin-top: -37px;
  height: 34px;
  font-size: 16px;
  max-width: 100%;
  width: 100%;
}


.searchbar-right {
  display: flex;
  flex: 0 0 auto;
  margin-top: -5px;
  align-items: stretch;
  flex-direction: row
}

.searchbar-clear-icon {
  margin-right: 12px
}

.group {
    background-color: rgba(182, 182, 182, 0.28);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    border-radius: 30px;
    backdrop-filter: blur(10px)
}

.card {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 130px;
  margin: auto;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 20px 20px 60px var(--shadow-color), -20px -20px 60px var(--shadow-color2);
  ;
}

.bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 240px;
  height: 120px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px;
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--theme-color);
  opacity: 1;
  filter: blur(60px);
  animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

/*------ Settings ------*/
.container {
  --color: #a5a5b0;
  --size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: var(--size);
  user-select: none;
  fill: var(--color);
}

.container .sun {
  position: absolute;
  animation: keyframes-fill .5s;
}

.container .moon {
  position: absolute;
  display: none;
  animation: keyframes-fill .5s;
}

/* ------ On check event ------ */
.container input:checked ~ .sun {
  display: none;
}

.container input:checked ~ .moon  {
  display: block;
}

/* ------ Hide the default checkbox ------ */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
  0% {
    transform: rotate(-360deg) scale(0);
    opacity: 0;
  }

  75% {
    transform: rotate(25deg);
  }
}

