.btn{
    font-family: "Poppins";
    font-size: 15px;
    width: 192px;
    min-height: 48px;
    margin: 30px 0 26px 0;
    background-color: black;
    color: white;
}

.hh {
    width: 100%;
    text-align: center;
}

.hh div {
    display: inline-flex;
    border: 1px solid #D3D3D3;
    height: 104px;
    width: calc(100% - 40px);
    max-width: 1640px;
    margin-top: 40px;
    border-radius: 5px;
    align-items: center;
    padding: 0px 43px;
}

.hh div .h-a {
    margin-left: 40px;
    font-family: "PoppinsMedium";
    font-size: 17px;
    color: #999999;
    text-decoration: none;
    transition-duration: .15s;
}

.hh div .h-a:hover {
    transform: scale(1.1);
}

.h-line {
    border-left: 1px solid #D3D3D3;
    height: 45px;
    margin-left: 40px;
}

.hh div .h-active {
    color: black;
}

.hh .btn {
    margin-left: 40px;
}

.btn:disabled {
    opacity: 1;
    background-color: #F2F2F2;
    color: #A9A9A9;
    border: 1px solid #A9A9A9;
}

.mobile-btn {
    width: 18px;
    height: 16px;
    border: 0;
    background-color: transparent;
    background-image: url("../../views/img/ui/menu.svg");
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    bottom: auto;
    min-height: 100%;
    right: 0;
    width: 350px;
    z-index: 1;
    background-color: white;
    font-family: "PoppinsMedium";

    padding-top: 40px;
    border: 1px solid #00000033;
}
.mobile-menu .btn{
    width: 100%;
}

.mobile-menu .padd {
    padding-left: 40px;
    padding-right: 40px;
}

.mobile-menu ul {
    list-style: none;
    padding-left: 0;
    margin-top: 55px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: black;
    font-size: 25px;
}

.mobile-menu form {
    text-align: left;
}

.mobile-menu h2 {
    font-size: 30px;
    padding-top: 40px;
    margin-bottom: 15px;
}

.mobile-menu .v-line {
    border: 1px solid #00000033;
    width: 100%;
    display: inline-block;
}

.mobile-menu .search-input {
    height: 54px;
    width: 100%;
}

.mobile-menu .search-input input[type="text"] {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #00000033;
    padding-left: 15px;
    font-size: 12px;
}

.mobile-menu .search-input input[type="text"]::placeholder {
    color: #00000033;
}

.mobile-menu .search-input input[type="submit"] {
    position: absolute;
    right: 40px;
    height: 54px;
    width: 54px;
    border-radius: 5px;
    border: 0;
    background-color: black;
    color: white;
}

.mobile-menu #close_mobile {
    cursor: pointer;
}



.blured *:not(.mobile-menu *, .mobile-menu) {
    filter: blur(4px);
    transition-duration: .5s;
}

.blured {
    overflow-y: hidden;
    transition-duration: .5s;
}

@media only screen and (max-width: 1165px) {
    .h-mpage {
        display: none;
    }

}


@media only screen and (max-width: 768px) {
    .hh div {
        border: 0;
        width: 350px;
        justify-content: space-between;
        padding: 0;
    }

    .h-logo {
        width: 100px;
    }

    .hh .btn {
        margin: 0;
        width: 146px;
        font-size: 12px;
    }

    .hh div .h-a,
    .hh .h-line {
        display: none;
    }

    .mobile-btn {
        display: inline-block;
    }
}