.hp_video {
    position: absolute !important;
    top: 0;
    width: 100%;
}

#hp_video {
    width: 100vw;
    height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    right: 0;
    top: 0;
    z-index: 10001;
    background-color: #000000A5;
}

#hp_video .hp_video_container {
    width: fit-content;
    height: fit-content;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
}

#hp_video.hide_mobile {
    display: none !important;
}

#hp_video .hp_video_container .video_header {
    width: 100%;
    background-color: #111;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
}

#hp_video .hp_video_container .video_header .closer {
    padding: 15px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

#hp_video .hp_video_container .video_header .closer svg {
    width: 20px !important;
    height: auto !important;
}

#hp_video .hp_video_container video {
    width: 435px;
    height: fit-content;
    object-fit: cover;
}

#hp_video .hp_video_container .pause_video {
    background-color: #ffffff;
    border: 1px solid #111;
    cursor: pointer;
    font-family: PT Sans;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    text-align: center;
    height: 50px;
}

.hp_video_container_button {
    position: absolute;
    right: -40px;
    bottom: calc(50vh - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 50px;
    border: 0;
    background-color: #ffffff;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    transform: rotate(270deg);
    font-family: PT Sans;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 10000;
}

#hp_video .hp_video_container .pause_video:hover,
.hp_video_container_button:hover {
    background-color: #111;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}

#vrsearchinputinformation {
    padding: 0 35px !important;
}

@media (min-width:1920px) {
    .hp_video {
        position: absolute !important;
    }
    
    #hp_video {
        width: 100%;
        max-width: max-content;
        height: fit-content !important;
        position: absolute !important;
        right: 0;
        bottom: 0;
        top: unset;
        z-index: 10000;
    }

    #hp_video .hp_video_container {
        width: 100%;
        position: relative;
        overflow: hidden;
        display: none;
    }

    #hp_video.hide_mobile {
        display: flex !important;
    }

    #hp_video .hp_video_container .video_header {
        display: none;
    }

    #hp_video .hp_video_container {
        display: flex;
    }
    
    .hp_video_container_button {
        display: none;
    }
    
    #vrsearchinputinformation {
        padding: 0 !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video_fadeIn {
    animation: fadeIn;
    animation-duration: 500ms;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.video_fadeOut {
    animation: fadeOut;
    animation-duration: 500ms;
}