html body{
  height: auto;
  overflow-x: hidden;
  font-family: var(--main-font-family) !important;
}

.pre_header{
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 120px;

  display: flex;
  align-items: start;

  background-color: var(--secondary-sandy);
}

.ctn_header{

    width: 100%;
    height: 118px;
    background-color: var(--secondary-sandy);

    justify-content: space-between;

    box-shadow: 0 2px 10px #00000012;

}

@media screen and (max-width: 1320px) {
  .ctn_header {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (min-width: 1320px) {
  .ctn_header {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media screen and (min-width: 1720px) {
  .ctn_header {
    padding-left: 240px;
    padding-right: 240px;
  }
}

@media screen and (min-width: 1920px) {
  .ctn_header {
    padding-left: 380px;
    padding-right: 380px;
  }
}

.ctn_headerNav{

    gap: 30px;
}

.ctn_panel{

    min-width: 170px;
    max-width: 170px;

    position: relative;
}

.txt_color{

    color: var(--brand-marian-blue);
}

a[class="txt_color btn-text"]{

    text-decoration: none !important;
}

a[class="txt_color btn-text"]:hover{

    text-decoration: none !important;
    color: var(--brand-orange-sun);
}

.ctn_userName{

    display: flex;
    justify-content: end;
    align-items: center;
}

.ctn_user{

    display: flex;
    justify-content: end;
    align-items: center;

    gap: 15px;
}

.ctn_userIcon{

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    color: white;

    background-color: var(--brand-orange-sun);

    cursor: pointer;
}

.ctn_userIcon:hover{

    background-color: var(--brand-marian-blue);
}

.ctn_usermenu.column-item {
  display: none;
  flex-direction: column;
  top: 50px;
  background-color: white;
  border: 1px solid var(--bg-pink);
  border-radius: 20px;
  width: 200px;
  position: absolute;
  z-index: 999;
}

.ctn_usermenu.column-item.active {
  display: flex;
}


.ctn_menuItem{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid var(--bg-pink);
  cursor: pointer;
}

.ctn_menuItem:last-child{

  border-bottom: none;
}

a[class="ctn_menuItem txt_color body-semi-text"]{

    text-decoration: none !important;
}

a[class="ctn_menuItem txt_color body-semi-text"]:hover{

    text-decoration: none !important;
    color: var(--brand-orange-sun);
}

.a_login{

  text-decoration: none !important;
}

.a_login:hover{

    text-decoration: none !important;
    color: var(--brand-orange-sun);
}

.a_signin{

  text-decoration: none !important;

  height: 35px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;

  background-color: var(--brand-orange-sun);

  cursor: pointer;
  border-radius: 3px;
  color: white;
}

.a_signin:hover{

  text-decoration: none !important;
  background-color: var(--brand-marian-blue);
  color: white;
}

.a_signin:focus{

  text-decoration: none !important;
  background-color: var(--brand-marian-blue);
  color: white;
}
