@font-face {
  font-family: proximanova;
  src: url("/themes/custom/bootstrap5_coin/fonts/Proxima/ProximaNova-Regular.otf");
}
@font-face {
  font-family: proximanovabold;
  src: url("/themes/custom/bootstrap5_coin/fonts/Proxima/Proxima Nova Bold.otf");
}
@font-face {
  font-family: proximanovasemibold;
  src: url("/themes/custom/bootstrap5_coin/fonts/Proxima/proximanova-semibold.otf");
}
@font-face {
  font-family: punchtape;
  src: url("../fonts/Proxima/LediZ.ttf");
}

/*@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");*/
* {
  font-family: "proximanova";
  font-style: normal;
}

header .navbar-brand,
header .navbar-brand img {
  margin-right: 0px !important;
}

header .navbar-collapse {
  width: fit-content;
  justify-content: space-around !important;
}

header .navbar-toggler {
  border: 0px !important;
}

header .navbar-toggler:focus,
header .navbar-toggler:focus-visible {
  box-shadow: 0 0 0 0px;
}

header .navbar-toggler .navbar-toggler-icon {
  background-image: url("/themes/custom/bootstrap5_coin/images/x-navbar.png");
}

header .navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg);
}

header .region-nav-main {
  width: fit-content;
  overflow-x: auto;
}

header .region-nav-additional {
  display: flex;
  justify-content: end;
  font-size: 14px;
  gap: 30px;
  align-items: center;
}

header > nav {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

header .nav-link {
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  padding: 0.25rem !important;
}

header .nav-link:hover, header .nav-link.is-active {
  color: var(--primary-one) !important;
}
header .region-nav-main .navbar-nav .nav-item a{
  color: rgba(0, 0, 0, 0.55);
}

/* header menu item */
header .menu-item a:hover, header .menu-item a.is-active {
  color: var(--primary-one) !important;
}
header .region-nav-main .menu-item a{
  color: rgba(0, 0, 0, 0.55);
        text-decoration:none;

}
   
header input[type="search"] {
  box-sizing: border-box;
  border: 1px solid var(--header-input-border);
  border-radius: 4px;
  line-height: 19px;
  padding-bottom: 6px;
  background: rgba(255, 255, 255, 0.20);
  border:none;

}
header input[type="search"]::placeholder {
  color: #fff;
}
header input[type="search"]:focus{
    background: rgba(255, 255, 255, 0.20);
    color: #fff;


}

header .search-block-form {
  width: 70%;
}

header form#search-block-form {
  position: relative;
  height: 45px;
  width: 100%;
}

header button.navbar-toggler.collapsed {
  border-color: transparent;
}

header .views-col.col-1 {
  background-color: transparent;
  margin-top: 0px !important;
  padding: 0px !important;
}

/* header profile dropdown */

.coin-profile-dropdown {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.coin-profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.coin-profile-dropdown-toggle {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.5 7L12.1292 0.25H0.870835L6.5 7Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: left;  
}
.coin-profile-dropdown-toggle img{
  display: none;
}

.coin-profile-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0px;
  background-color: var(--white);
  border-radius: 12px;
  width: fit-content;
  border: 1px solid var(--primary-border);
  overflow: hidden;
  transition: 1s ease-in-out;
  box-shadow: 3px 3px 5px var(--primary-shadow);
}

.coin-profile-dropdown-menu.active {
  display: block;
  transition: 1s ease-in-out;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.90)
}

.coin-profile-dropdown-primary {
  background: var(--pur-white);
  border-radius: 12px 12px 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  gap: 10px;
}

.coin-profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: calc(100% - 60px);
}

.coin-profile-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--primary-one);
}

.coin-profile-email {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--primary-one);
  font-family: proximanovasemibold;
}

.coin-profile-dropdown-secondary {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

a.coin-profile-dropdown-item {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: var(--primary-one);
  text-decoration: none;
  font-family: proximanovabold;
}
/* header dropdown hover */
.coin-profile-dropdown-secondary a:hover {
  color:#00426A
}

@media (max-width: 576px) {
  .coin-profile-dropdown-menu {
    right: 0;
  }
}

@media (max-width: 768px) {
  header .navbar-brand img {
    width: 48px;
    height: auto;
  }

  header > nav {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 992px) {
  header .navbar-collapse {
    display: none;
  }

  header .navbar-collapse.show {
    position: absolute;
    width: fit-content;
    top: 4%;
    left:-2% ;
    background-color: var(--pur-white);
    z-index: 11;
    display: flex;
    flex-direction: column-reverse;
    border: 1px solid var(--primary-border);
    align-items: flex-start;
    z-index: 100;
  }

  header .navbar-collapse.show .region.region-nav-additional {
    flex-direction: column;
    padding: 10px;
    background-color: var(--secondary-five);
    width: 100%;
    align-items: flex-start;
  }

  header button.navbar-toggler {
    z-index: 12;
  }

  .navbar-collapse .region-nav-main,
  .navbar-collapse nav {
    width: 100%;
  }

  header .nav-link {
    padding: 0.5rem 1rem !important;
  }

  header form#search-block-form {
    width: 60%;
  }
}

@media (width: 992px) {
  header .nav-link {
    padding: 0.25rem !important;
  }
}

@media (min-width: 992px) {
  header .navbar .container-fluid {
    padding: 0px !important;
  }
  .coin-profile-dropdown-menu{
    min-width: 200px;
    max-width: 240px;
}

  header .region-nav-main {
    width: fit-content !important;
    overflow: hidden;
  }

  header form#search-block-form {
    width: 100%;
  }

  header .navbar-brand img {
    width: 90px;
    height: auto;
  }

  .coin-profile-picture {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1100px) {
  header .navbar .container-fluid {
    padding: 0px 20px !important;
  }

  header .region-nav-main .navbar-nav {
    margin: 0px !important;
  }

  header .nav-link {
    padding: 0.75rem !important;
  }
}

@media (min-width: 1200px) {
  header .nav-link {
    font-size: 17px;
  }
}
