:root {
  --scalval: 1;
}

.down-icon {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(1,1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
    margin-left: 5px; /* Adjust margin as needed */
}

.down-icon::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px;
}

.language-icon {
    display: inline-block;
    background-color: #f3f3f3;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    position: relative;
}

.language-icon::before {
    content: 'Aあ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6px;
    color: #333;
}

.language-icon i {
    color: #333;
    font-size: 18px;
}





.pen-icon {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: rotate(-45deg) scale(var(--scalval,1));
  width: 10px; /* Adjusted width */
  height: 3px; /* Adjusted height */
  border-right: 2px solid transparent;
  box-shadow: 0 0 0 2px, inset -2px 0 0;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  margin-right: -2px;
}

.pen-icon::after,
.pen-icon::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}

.pen-icon::before {
  background: currentColor;
  border-left: 0;
  right: -4px; /* Adjusted right position */
  width: 2px; /* Adjusted width */
  height: 3px;
  border-radius: 1px;
  top: 0;
}

.pen-icon::after {
 width: 9px;
 height: 7px;
 border-top: 3px solid transparent;
 border-bottom: 4px solid transparent;
 border-right: 7px solid;
 left: -11px;
 top: -2px
} 



.location-pin {
 box-sizing: border-box;
 position: relative;
 display: block;
 width: 3px;
 top:4px;
 height: 7px;
 border-radius: 3px;
 transform: scale(var(--scalval,1));
 background: currentColor
}

.location-pin::after {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 width: 12px;
 height: 12px;
 border: 6px double;
 border-radius: 100px;
 top: -10px;
 left: -5px
} 



.eye-open {
  position: relative;
  display: block;
  transform: scale(var(--scalval,1));
  width: 20px; /* Adjusted width */
  height: 15px; /* Adjusted height */
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  overflow: hidden;
  box-sizing: border-box;
}

.eye-open::after,
.eye-open::before {
  content: "";
  display: block;
  border-radius: 100px;
  position: absolute;
  box-sizing: border-box;
}

.eye-open::after {
  top: 1.5px; /* Adjusted top position */
  box-shadow: inset 0 -6px 0 1.5px, inset 0 0 0 1.5px; /* Adjusted box-shadow values */
  width: 20px; /* Adjusted width */
  height: 20px; /* Adjusted height */
}

.eye-open::before {
  width: 6.67px; /* Adjusted width */
  height: 6.67px; /* Adjusted height */
  border: 1.33px solid transparent; /* Adjusted border thickness */
  box-shadow: inset 0 0 0 4px, 0 0 0 2.67px, 4px 0 0 0, -4px 0 0 0; /* Adjusted box-shadow values */
  bottom: 3.33px; /* Adjusted bottom position */
  left: 6.67px; /* Adjusted left position */
}




.time-icon,
.time-icon::before {
 display: block;
 box-sizing: border-box
}

.time-icon {
 position: relative;
 transform: scale(var(--scalval,1));
 width: 16px;
 height: 16px;
 border: 2px solid;
 border-top: 4px solid;
 border-radius: 3px
}

.time-icon::before {
 content: "";
 position: absolute;
 width: 10px;
 border-radius: 3px;
 left: 1px;
 background: currentColor;
 height: 2px;
 top: 2px
} 
