*,
*::before,
*::after {
    box-sizing: border-box;
}



body {
    background-color: #f0eff4;
    min-height: 70vh;
    font-family: 'fontt', sans-serif;
    padding-top: 46px;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Initially hide the menu */
.popup-menu {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 150px;
  margin-left: 88.8%;
  margin-top: 135px;
  z-index: 1;
  opacity: 0; /* Start hidden */
  visibility: hidden; /* Make the menu not interactable */
  transform: translateY(-10px); /* Start slightly above */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s; /* Transition opacity, transform, and visibility */
}

/* Show the menu with animation */
.popup-menu.show {
  visibility: visible; /* Make the menu visible */
  opacity: 1; /* Fade in */
  transform: translateY(0); /* Slide into place */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transition for showing the menu */
}

.popup-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.popup-menu li {
  padding: 10px;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.popup-menu li a {
  text-decoration: none;
  color: black;
}

.popup-menu li:hover {
  background-color: #ccc;
}

.main {
    width: 100%;
    max-width: clamp(320px, 90vw, 1600px);
    height: 100%;
    margin: 46px auto 0;
    padding: 18px 12px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.change-langu {
    margin-left: 92.9%;
    width: 42px;
    height: 42px;
    padding: 8px;
    background-color: #fff;
    border-radius: 8px;
    transition: 0.3s;
}
.change-langu:hover {
    background-color: #0000000e;
    transition: 0.3s;
}

.bottom {
    position:static;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-top: 60px;
}

.input {
    display: block;
    width: 100%;
    height: 38.6px;
    padding: 6px 12px;
    font-size: 14px;
    margin-top: 0;
    line-height: 1.42857143;
    color: #555;
    margin-bottom: 17px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.input:focus {
    border-color: /*#f4f49b*/ /*#f4e6d0*/ /*#cd93d4*/ /*#c488cc*/ /*#3fae49*/ /*#4caf50*/ rgb(46, 139, 87);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(46, 139, 87, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(46, 139, 87, 0.6);
}

.toolbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: 55px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 10px;

}