*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Aeonik', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.top-section-without-login {
  width: 100%;
}

.nav-container {
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 10px 10px;
}

.nav-right-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  height: 27px;
}

.nav-div p {
  line-height: 8px;
}

.hamburger-icon-cont {
  padding: 6px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menubtn {
  width: 30px;
  height: 30px;
}

.menubtn>img {
  width: 20px;
  height: 20px;
}

.flagbox>img {
  border-radius: 60px;
  width: 20px;
  height: 20px;
}

.common-div {
  background: #27480A;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 8px;
  text-align: center;
  line-height: 5px;
  padding: 16px 12px;
}


.profile_conatiner{
  min-width: 300px;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0px;
  background-image: url('./assets/background.png');
}
.profile_form_main {
  width: 100%;
  height: fit-content;
  background-color: #24262b;
  padding: 3rem 1rem 4rem 1rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.profile_form_main > h1 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.profile_form_main > p{
    font-size: 14px;
    font-weight: 500;
}

.profle_form_value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

p.showErr{
    margin: 0;
    color: #ff0011;
    display: block;
}

.profileInputs {
  width: 90%;
  background-color: #1a1c20;
  border: unset;
  border-radius: 6px;
  padding: 16px 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}
.profileInputs::placeholder {
  color: #787878;
  font-size: 14px;
  font-weight: 500;
}
.profileInputs:active,
.profileInputs:focus{
  box-shadow: 0 0 20px rgba(81, 203, 238, 1);
}

.prof_input_group{
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.sub_inputField{
    width: 25%;
    flex-grow: 1;
}

.text_center{
    text-align: center;
}

.input_wrapper{
    width: 100%;
}

.countyCodeInput{
    width: 70px;
    height: 50px;
    background-color: #1a1c20;
    border: unset;
    border-radius: 6px;
    padding: 16px 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    -webkit-appearance: none;
    outline: none;
}

.countyCodeInput:active,
.countyCodeInput:focus{
  box-shadow: 0 0 20px rgba(81, 203, 238, 1);
}

.warning_text{
    color: #77FF00;
}