
.column {
    height: 100%;
  }
  
.left {
flex: 1;
}
  
.right {
flex: 1;
}
  
.circle {
    position: absolute;
    top: 250px;
    left: -27px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: url('/images/icons/changing-width.svg');
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #333; */
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    padding: 25px ;
}
.adaptive__row.container__row{
    flex-wrap: nowrap;
    align-items: flex-start;
    position: relative;
    gap: 20px;
    margin-bottom: 35px;
}
.adaptive__col-item img{
    max-width: 100%;
    width: 100%;
}
.catalog-column{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}
.column.left{
    position: sticky;
    top: 10px;
}
.catalog-column .default-card{
    /* min-width: 330px; */
    min-width: 268px;
    flex: 1 1 calc(50% - 10px);
}
.adaptive__col-item img{
    pointer-events: none ;
}
.circle-container{
    width: 0;
    position: relative;

}
@media(max-width:1199px){
    .catalog-column .default-card{
        flex: 1 1 100%;
    }
}
@media(max-width:992px){
    .adaptive__row {
        flex-direction: column;
    }
    .circle-container{
        display: none;
    }
    .adaptive__row > * {
        width: 100%;
        flex: 1 1 100% !important;
    }

}