.home {
    background: linear-gradient(270deg, rgb(207, 221, 255) 0%, rgb(243, 237, 254) 100%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.home__inner {
    padding: 20px 24px 36px;
}
.home__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.home__nav-link {
    width: 24px;
    height: 24px;
    background-image: url(../../img/arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
}
.home__nav-btn {
    width: 24px;
    height: 24px;
    background-image: url(../../img/search.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.home__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: var(--dark-color);
    margin-bottom: 8px;
}
.home__btn-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 15px;
    height: 44px;
    width: 100%;
    background: var(--light-color);
    margin-bottom: 16px;
}
.home__btn-search span{
    display: block;
    margin: 0;
    color: rgb(118, 118, 118);
    font-size: 16px;
    font-weight: 400;
}
.home__btn-search svg{
    transform: rotate(180deg);
}
.home__btn {
    background: var(--light-color);
    border-radius: 5px;
    padding: 6px 16px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
    min-height: 44px;
}
.home__content{
    display: flex;
    align-items: stretch;
    gap: 5px;
}

.mark{
    max-height: calc(100% - 24px) !important;
    padding: 16px 15px 0 !important;
}


.headerHome {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    overflow: hidden;
    background: linear-gradient(270deg, rgb(207, 221, 255) 0%, rgb(243, 237, 254) 100%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 21;
    transition: .2s linear;
}
.headerHome__inner {
    padding: 20px 0 0 0;
    padding-bottom: 8px;
}
.headerHome__nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerHome__content{
    margin-top: 20px;
    padding-bottom: 26px;
}
.headerHome__title {
    position: relative;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0;
    transition: .2s linear;
}
.headerHome__key{
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    background: #D5BDFB;
    width: 35px;
    height: 4px;
    border-radius: 5px;
}

.hidden-top{
    position: fixed;
    top: -70px !important;
    transition: .2s linear;
}

.opacity-1{
    opacity: 1;
}

.opacity-0{
    opacity: 0;
}

.headerHome__bg{
    position: fixed;
    top: 0;
    right: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9;
}