@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Verdana, Geneva, Tahoma, sans-serif;
}

body {
    padding: 16px;
    background-image: linear-gradient(to right, #563D7E, #0E0E0E);
    touch-action: none;
}

/* Content Container */

#content_container {
    position: relative;
    display: flex;
    flex-flow: column;
    gap: 16px;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -khtml-border-radius: 48px;
}

#content_container #swiper_container {
    display: flex;
    flex-flow: row;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -khtml-border-radius: 48px;
    height: 78vh;
    /* background-color: red; */
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior:auto;
    user-select: none;
}

#content_container #swiper_container>div.swiper_slide {
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -khtml-border-radius: 48px;
    flex: 1 0 auto;
    display: flex;
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    max-height: 100%;
}

#content_container #swiper_container video,
#content_container #swiper_container img {
    display: block;
    margin: auto;
    height: fit-content;
    width: 100%;
    object-fit: contain;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -khtml-border-radius: 48px;
    max-height: 100%;
    max-width: fit-content;
}

#content_container #swiper_container .swiper_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 8;
}

#content_container #swiper_container .swiper_controls button{
    font-size: 20px;
    background-color: #3335;
    color: white;
    border: 1px solid white;
    width: 38px;
    height: 38px;
    cursor: pointer;
    border-radius: 100%;
    opacity: .6;
}

#content_container #swiper_container .swiper_controls button[disabled]{
    opacity: 0;
}

/* Button Contact */

.button_container {
    width: 100%;
    height: fit-content;
    margin-top: 12px;
}

.button_container button {
    display: block;
    width: 100%;
    padding: 8px 32px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(5px);
    background-color: rgba(33, 33, 33, 1);
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    transition: .4s;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal .modal-content {
    display: flex;
    position: relative;
    background-color: #555;
    margin: auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #111;
    width: 100%;
    /* Could be more or less, depending on screen size */
    height: 100%;
}

.modal .close {
    position: absolute;
    top: 0;
    right: 6px;
    color: #aaa;
    float: right;
    font-size: 36px;
    font-weight: bold;
}

.modal .close:hover,
.modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal .modal-content .button-container {
    display: flex;
    flex-flow: column;
    margin: auto;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.modal .modal-content .button-container .button {
    display: block;
    width: 100%;
    padding: 8px 32px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    text-align: center;
    backdrop-filter: blur(5px);
    background-color: rgba(33, 33, 33, 1);
    border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: .4s;
}

.message_container{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    z-index: 350;
    background-color: #333a;
    color: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-wrap: nowrap;
    font-size: 13px;
    padding: 8px;
    font-weight: 600;
}