#TDestinationFilter{cursor: pointer}

#blackwindow{
    position: fixed;
    z-index: 20000000001;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    top: 0px;
    left: 0px;
    display: none;
}


#centering_div{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}

#banner {
    border: 5px solid black;
    width: 50px;
    height: 50px;
    border-radius:50%;
    border-left: 5px solid white;
    animation: loader 2s linear infinite;
}

@keyframes loader{
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg)}
}

.slideshow{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 20000000000;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.7);
    display: none;
    backdrop-filter: blur(20px);
}


.SS {width: 100%;height: 100%;}

.Previous ,.Next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background-color: black;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}
.Previous {left: 2%;}
.Next {right: 2%;}

.close {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    right: 50px;
    top: 2%;
    background-color: rgb(188, 197, 195);
    box-shadow: 0px 0px 5px 2px gray;
    color: black;
    cursor: pointer;
    border-radius: 3px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close:hover {background-color: rgb(100,150,200); color: white;}

.slide{width: 70%;height: 70%;position: relative;left: 50%;top: 50%;transform: translate(-50%,-50%);background-color: white;border-radius: 30px;overflow: hidden;cursor: pointer;transition: all 0.5s;display: none;animation-name: fade;animation-duration: 1.5s;}
@keyframes fade{
    from {opacity: 0.4;}
    to {opacity: 1}
}

.slide:hover {box-shadow: 0px 10px 10px lightblue;transform: translate(-50%,-55%);}

.slide img {width: 100%;height: 100%;object-fit: cover}

.slide span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 40px;
    line-height: 56px;
    font-weight: 600;
    background-color: rgb(50,200,150);
    padding: 0px 30px;
    border-radius: 10px;
    font-family: 'Times New Roman',serif;
    transform: translate(-50%,-50%);
}

@media screen and (max-width: 800px){
    .slide{width: 95%;height: 50%;border-radius: 7px;}
    .Previous,.Next{top: 85%;width: fit-content;text-align: center;}
    .Previous{left: 2.5%;}
    .Next{right: 2.5%;}
    .slide h1{padding: 0px 10px;font-size: 30px;}
}