.catalogo{
    display: flex;
    flex-wrap: wrap;
    padding: 1vw;
    gap: 1vw;
}
.filtro_box{
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 100;
    background: var(--bgw);
    position: relative;
    width: calc(100% - 20px);
    flex-basis: calc(300px - 1vw);
    max-width: 1000px;
    min-width: 220px;
    flex-grow: 1;
}
.filtro_sticky{
    width: 100%;
    position: sticky;
    top: 54px;
    height: fit-content;
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row-reverse;
    gap: 8px;
    padding: 14px 1.6vw;
}
.filtro_title{
    flex-basis: 100%;
    text-align: center;
    display: flex;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--colortitle);
    justify-content: center;
    text-transform: uppercase;
    padding: 5px;
    width: fit-content;
}
.filtro_box label{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex-grow: 1;
    flex-basis: 160px;
}
.filtro_box label span{
    color: var(--colortitle);
    padding: 2px 10px;
}
.filtro_box label div{
    display: flex;
    gap: 7px;
    border: 1px solid var(--bordersoft);
    position: relative;
    border-radius: 6px;
}
.filtro_box label div img{
    height: 24px;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    filter: var(--filtroc);
}
.filtro_box label div input, .filtro_box label div select{
    width: calc(100% - 40px);
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
    color: var(--colorsoft);
}
.filtro_box label div select option{
    background: var(--bgdark);
    color: var(--colortxt);
    padding: 10px;
}
/*CAJA DE TOURS*/
.tours_box{
    min-height: 360;
    display: flex;
    flex-wrap: wrap;
    padding: 14px 8px;
    box-shadow: var(--shadow);
    flex-basis: calc(70% - 1vw);
    border-radius: 4px;
    flex-grow: 1;
    overflow: hidden;
    background: var(--bgw);
    z-index: 50;
    position: relative;
    gap: 6px;
}
.tour{
    border-radius: 4px;
    flex-grow: 1;
    flex-basis: 220px;
    display: flex;
    flex-direction: column;
    cursor: grab;
    user-select: none;
}
.tour.dragging{
    background: #4DC952;
    /*scale: 0.5;*/
}
.tour.column{
    grid-column: span 2;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
}
.column > div:nth-child(1) {
  order: -2;
}
.tour.column .tour_img{
    height: 100%;
    min-height: 260px;
}
.tour .tour_img{
    width: 100%;
    height: 180px;
    min-height: 180px;
    background: var(--bgdark);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    max-height: 0;
}
.tour_img .tour_cover_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 800ms ease-out;
}
.tour_cover_img[src*='top']{
    object-position: top;
}
.tour_cover_img[src*='bottom']{
    object-position: bottom;
}
.tour_cover_img[src*='left']{
    object-position: left;
}
.tour_cover_img[src*='right']{
    object-position: right;
}
.tour_img:hover:after{
    transform: translateY(60px);
    opacity: 0.4;
}
.tour .tour_img:hover .tour_cover_img{
    transform: scale(1.2);
}
.tour .t_title{
    color: var(--colortitle);
    z-index: 30;
    text-wrap: pretty;
    display: flex;
    justify-content: center;
    padding: 5px;
    align-items: center;
    width: 100%;
    opacity: 1;
    transition: all 400ms ease-out;
    font-size: 15px;
    font-family: "Tilt Warp", sans-serif;
    font-weight: normal;
    min-height: 40px;
    text-align: center;
    text-transform: uppercase;
}
.tour .tour_img .btn_del_tour{
    position: absolute;
    top: 5;
    left: 5;
    z-index: 30;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1px;
    border: none;
    font-size: 12px;
    border-radius: 50%;
    transition: all 200ms ease;
}
.tour .tour_img .btn_del_tour img{
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(91deg) brightness(107%) contrast(95%);
}
.tour .tour_img .btn_del_tour:hover{
    background: red;
    cursor: pointer;
}
.link_edit_tour{
    position: absolute;
    top: 50px;
    left: 5px;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    z-index: 30;
    justify-content: center;
}
.link_edit_tour:hover{
    background: var(--color3);
}
.link_edit_tour img{
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(91deg) brightness(107%) contrast(95%);
}
.top{
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    z-index: 30;
    justify-content: center;
    font-size: 26px;
    color: white;
    line-height: 0;
}
.top.true{
    color: yellow;
}
.tour_info{
    display: flex;
    gap: 5px;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}
.tour_info .t_description{
    display: none;
    height: fit-contents;
    max-height: 300px;
    color: var(--colortxt);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    font-size: 15px;
}
.tour.column .tour_info .t_description{
    display: flex;
}
.tour_sumary{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    gap: 2px;
    background: var(--bgdark);
    flex-direction: column;
}
.tour_sumary .f_sum{
    padding: 3px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    flex-grow: 1;
    color: var(--colortxt);
}
.tour_sumary .f_sum i{
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 3px;
}
.prices_box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.prices_box .pp{
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    flex-basis: 50%;
    flex-direction: column;
}
.prices_box .pp sup{
    font-size: 15px;
    color: var(--colorsoft);
}
.prices_box .pp .caja_precio{
    display: flex;
    gap: 3px;
}
.prices_box .pp .caja_precio b{
    font-size: 20px;
    color: var(--colortitle);
}
.prices_box .pp .caja_precio .moneda{
    font-size: 14px;
    color: var(--colorsoft);
}
.f_tour{
    margin-top:5px;
    justify-content: space-between;
}
.f_tour a{
    padding: 5px;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.f_tour a:after{
    content: '';
    z-index: -1;
    width: 50%;
    height: 100px;
    position: absolute;
    background: #649aab;
    left: 0;
    margin:auto;
    right: 0;
    transition: all 500ms ease;
    border-radius: 50%;
    opacity: 0;
    scale: 1;
    filter: blur(0px);
}
.f_tour a:hover:after{
    opacity: 1;
    scale: 3;
    filter: blur(0px);
}
.f_tour a:before{
    content: '';
    z-index: -5;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #4dc952;
}
.f_tour a .btn_arrow{
    margin-left: 7px;
    font-weight: bold;
    transition: all 500ms ease;
}
.f_tour a:hover .btn_arrow{
    margin-left: 10px;
}
.f_tour a span{
    color: white;
}
@media screen and (max-width:440px){
    .tour{
        flex-basis: 150px;
    }
}