/* html, body {
  scrollbar-gutter: stable both-edges;
} */

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* html,
  body,
  .header-wrapper,
  .header-content,
  .header-list {
    scrollbar-gutter: stable both-edges;
  } */

.header-wrapper {
    width: 100%;
    /* min-width: 430px; */
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #294874;
    /* background-color: #2c2c2c; */
    padding: 0 10rem;
}

.header-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* margin: 0 10rem; */
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* .header-menu {
    display: none;
} */

.header-button {
    padding: 0.8rem 1.4rem;
    border: none;
    color: #fff;
    background-color: #555881;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.1s ease;
    user-select: none;
}
.header-button:hover {
    /* transform: scale(1.1); */
    background-color: #7175a1;
}

.header-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-item a {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* @media (max-width: 700px) { */
/* .header-menu {
        display: block;
    }

    .header-list {
    width: 100%;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 10;

    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: auto;
}

.header-list::-webkit-scrollbar {
    display: none;
  }

.header-item {
    width: 100%;
    padding: 10px 15px;
    background-color: #eee;
    text-align: center;
}

.header-item:hover {
    background-color: #eee;
} */
/* } */

.ver-cat {
    z-index: 100;
    display: none;
}

.ver-cat-con {
    display: none;
    width: 100vw;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    left: -10px;
    right: 0;
}
.ver-cat:hover .ver-cat-con {
    display: flex;
}

.ver-cat-con:hover .ver-cat-con {
    display: flex;
}

.ver-cat-item {
    width: 100%;
    padding: 10px 0;
    background-color: rgb(53, 99, 167);
    text-align: center;
    cursor: pointer;
}
.ver-cat-item:hover {
    background-color: #ddd;
}

.header-bottom {
    width: 100%;
    background-color: rgb(57, 91, 141);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 0;
}

.header-bottom-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 800px) {
    .header-wrapper {
        padding: 0 10px;
    }
    /* .header-content {
        margin: 0 10px;
    } */

    .header-bottom-content {
        flex-direction: column;
    }

    .header-list {
        display: none;
    }
    .ver-cat {
        display: block;
    }
    .header-title {
        display: none;
    }
}
