/* kam/share/javacss/media.css */

@media (max-width: 1200px) {
    .search-form {
        transition: transform 0.3s linear;
        transform: translate(0, -100%);
        display: block;
        top: 50px;
        position: fixed;
    }

    .search-form.show {
        transform: translate(0, 0);
    }
}

@media (max-width: 575px) {
    .btns-wrap {
        margin-top: 42px;
        padding-left: 0;
        margin-bottom: 9px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .btns-wrap > * {
        margin-bottom: 9px;
    }

    .search-button,
    .search-input-block span {
        margin-top: 9px;
    }

    .button-form {
        text-align: center;
        width: 100%;
    }
}



/* kam/share/javacss/style.css */
/*.increase-font .close-button,*/ .search-form .close-button {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 12px;
    top: 12px;
    cursor: pointer;
    opacity: 1;
}

.search-form .close-button {
    top: 20px;
    right: 20px;
}

.close-button:before, .close-button:after {
    position: absolute;
    content: ' ';
    height: 28px;
    width: 2px;
    top: -3px;
    right: 10px;
    /*background: #4da9cf;*/
    background: #000000;
}

.close-button:before {
    transform: rotate(45deg);
}

.close-button:after {
    transform: rotate(-45deg);
}



.search-form {
    padding: 20px 20px 50px 25px;
    background-color: #ffffff;
    z-index: 99;
    position: absolute;
    right: 0;
    left: 0;
    /* border-radius: 0 0 15px 15px; */
    display: none;
}

.search-form.show {
    transform: translate(0, 0);
    display: block;
}

.position-relative:has(.search-form.show) {
    /* position: static !important; */
}
.search-form__container {
    /* max-width: 1680px; */
    /* padding: 0 calc(min(6vw, 80px) - 15px); */
}

.btns-wrap {
    margin-top: 65px;
    padding-left: 20px;
    margin-bottom: 60px;
}

.btns-wrap a {
    padding: 10px 19px;
    color: inherit;
    font-size: 18px;
}

a.button-form {
    border-radius: 20px;
    background-color: #000000;
    color: #fff;
}

.btns-wrap .or {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
    color: #000000;
    font-size: 18px;
}

.btns-wrap .dashed {
    border-bottom: 1px dashed #000000;
    padding: 3px 0;
}

.search-input-block span {
    color: #6b6b6b;
    font-size: 16px;
}

.search-input-block label {
    flex-direction: column;
    display: flex;
}

.search-input-block input {
    width: 100%;
    border: none;
    outline: none;
    height: 40px;
    padding: 0 16px;
    margin-top: 4px;
    border-bottom: 2px solid;
}

.search-button {
    width: 90%;
    height: 40px;
    background-color: #000000;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 300;
    border-radius: 30px;
    padding: 5px 30px;
}

