body {
    background-color: rgba(18, 18, 18, 1);
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    /* Adjust the width to fit your layout */
    max-width: 100%;
    /* Ensure the video doesn't exceed the container width */
    margin: 0 auto;
    /* Center the container horizontally */
    background-color: rgba(18, 18, 18, 1);
    z-index: 1;
}

.video-container video {
    width: 100%;
    /* Make the video fill the container horizontally */
    height: auto;
    /* Automatically adjust the height to maintain aspect ratio */
    border-radius: 20px;
}

.icon {
    display: none;
}

#modalContainer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* Semi-transparent overlay */
    transition: bottom 0.3s ease-in-out;
    /* Transition animation */
    z-index: 2;
    /* Set a higher z-index value to overlay the main content */
}

#modalContent {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    /* Set desired height */
    background-color: #fff;
    color: black;
    border-radius: 20px 20px 0 0;
}

#modalContent div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modalContent #modalIcon {
    background-color: transparent;
    border-radius: 24px;
    margin-top: -30px;
}

#modalContent #modalIcon #modalIconRing {
    width: 70px;
    height: 70px;
    background-color: rgb(248, 248, 248);
    border-radius: 35px;
}

#modalContent #fullExperience {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0;
}

.large-txt {
    font-family: ProximaNova, Arial, Tahoma, PingFangSC, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 5px;
    padding: 0;
}

.small-txt {
    color: rgba(22, 24, 35, 0.75);
    font-family: ProximaNova, Arial, Tahoma, PingFangSC, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    margin: 5px;
    padding: 0;
}

.confirm-btn {
    color: rgb(255, 255, 255);
    font-family: ProximaNova, Arial, Tahoma, PingFangSC, sans-serif;
    font-weight: 600;
    width: 100%;
    height: 44px;
    border: none;
    font-size: 15px;
    line-height: 44px;
    border-radius: 8px;
    background-color: rgb(254, 44, 85);
    margin-right: 5px;
    margin-left: 5px;
    padding: 0;
}

.dismiss-btn {
    font-family: ProximaNova, Arial, Tahoma, PingFangSC, sans-serif;
    font-weight: 400;
    width: 100%;
    height: 44px;
    border: none;
    font-size: 15px;
    line-height: 44px;
    background-color: rgb(255, 255, 255);
    margin-top: 2px;
    margin-bottom: -8px;
    color: rgb(22, 24, 35);
    padding: 0;
}

/* Media Query for Desktop */
@media screen and (min-width: 768px) {
    .video-container {
        width: 25%;
        /* Adjust the width to the desired partial screen size */
        height: auto;
        border-radius: 10px;
        margin: 10px;
    }

    #modalContainer {
        width: 25%;
    }

    #modalContent {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 300px;
        /* Set desired height */
        background-color: #fff;
        color: black;
        border-radius: 20px 20px 0 0;
    }

    .confirm-btn {
        margin: 25px;
    }

    .icon {
        display: flex;
        margin: 10px;
        align-self: start;
        justify-content: center;
        width: 100px;
        height: 100px;
    }

    .icon img {
        margin-left: 10px;
    }

    .icon h4 {
        margin-top: 0px;
        color: white;
    }
}