.inputs__input {
    font-size: 15px;
    padding: 8px;
    border: 1px solid #e2e2e2!important;
    width: 300px;
    margin: 0 10px!important;
    font-family: Roboto;
    outline: none!important;
    transition: all .3s;
}

.events__event {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
    background: var(--second-color);
    cursor:pointer;
    transition: all .3s;
}

.hidden{
    display: none!important;
}

.visible{
    display: flex!important;
}

.event__img{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.events__event:hover{
    box-shadow: 6px 6px 2px 1px rgb(123 123 123 / 20%);
}

.wrapper__events {
    display: none;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    margin-top: 25px;
    max-width: 1520px;
}

.my_wrapper{
    width: 100%;
    max-width: 1140;
}

.search-btn{
    margin-right: 10px;
    height: 44px;
    display: none;
    font-size: 16pt;
    width: 200px;
    /* padding: 5px 0; */
    border: none;
    border-radius: 10px;
    background: #9DB2BF;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.countOfCards{
    position: absolute;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0.3;
    right: 40px;
    bottom: -20px;
    color: var(--text-color);
}


.wrapper__inputs {
    width: 100%;
    max-width: 940px;
    display: flex;
    flex-direction: column;
/*     align-items: center;
padding: 10px; */
}
.wrapper__inputs_bot, .wrapper__inputs_bot2{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.name-input{
    height: 44px;
    border: none;
    border-radius: 5px;
    padding: 12px;
    margin: 0 10px 10px;
    font-size: 14px;
    outline: none;
    background: var(--second-color);
    color: var(--text-color);
}

.event__name {
    font-size: 18px;
    color: var(--link-color);
    line-height: 25px;
}

/* .event__inf, .event__name{
    font-family: Roboto;
} */

.event__inf {
    margin: 5px 0;
    font-size: 16px;
    line-height: 18px;
    color: var(--text-color);
}

.not-in-search{
    display: none;
}

.dates {
    position: relative;
    display: flex;
}

.date1, .date2{
    background: var(--second-color)!important;
    color: var(--text-color)!important;
}

input.date1, input.date2 {
    width: 100%;
    max-width: 170px;
    height: 44px;
    border: none;
    border-radius: 5px;
    padding: 12px;
    margin: 0 10px 10px;
    font-size: 14px;
    outline: none;
    background: #fff;
    color: #000;
}

/*choices*/
.choices__inner{
    background-color: var(--second-color)!important;
    color: var(--text-color)!important;
    border:none!important;
    border-radius: 5px!important;
    box-sizing: border-box;
}

.choices{
    max-width: 300px;
    width: 100%;
    height: 44px;
    margin: 10px;
    border-color: #e2e2e2!important;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    background-color: var(--second-color)!important;
    border: none!important;
    color: var(--text-color);
}
.choices[data-type*=select-one] .choices__input {
    background-color: var(--second-color)!important;
    color:var(--text-color);
    border:none!important;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: var(--primary-color)!important;
}
.choices__item{
    padding-right: 10px!important;
    word-break: normal!important;
}

.choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    display: none;
}

@media screen and (max-width: 600px){
    .events__event{
        margin: 20px 0;
    }
}

@media screen and (max-width: 1000px){
    header{
        position: fixed;
    }
    .wrapper__inputs{
        flex-direction: column;
        align-items: center;
        margin-top: 170px;
        margin-bottom: 0;
        padding: 10px;
        box-sizing: border-box;
    }
    .wrapper__inputs_bot{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        background: #a7b5bf;
        width: 100%;
        max-width: 400px;
        height: 100%;
        padding: 150px 0;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        transform: translate(-100%, 0);
        transition: .3s;
    }
    .inputs__input{
        margin: 10px 0;
        width: 100%;
    }
    .wrapper__events {
        margin: 12px;
    }
    .active-menu{
        transform: translate(0, 0);
    }
    .name-input{
        font-size: 18px;
        width: 100%;
        max-width: 360px;
        box-sizing: border-box;
        margin-bottom: 12px;
    }
    .wrapper__inputs_bot2{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .dates{
        width: 100%;
        max-width: 360px;
        margin-bottom: 10px;
        flex-direction: column;
    }
    .search-btn{
        margin-left: 10px;
    }
    input.date1, input.date2{
        width: 100%;
        margin: 0 0 12px;
        font-size: 18px;
    }
    .choices__inner{
        font-size: 18px;
    }
}
