/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#video-slider-wrapper .slick-next {
    right: 0px;
    z-index: 1;
}

#video-slider-wrapper .slick-prev {
    left: 0px;
    z-index: 1;
}

#video-slider-wrapper .slick-next,
#video-slider-wrapper .slick-prev {
    width: 40px;
    height: 40px;
}

#video-slider-wrapper .slick-next::before,
#video-slider-wrapper .slick-prev::before {
    font-size: 40px;
}

#video-slider-wrapper .back-bg {
    background-color: black;
    position: absolute;
    opacity: 0.3;
    z-index: 1;
}

#video-slider-wrapper .video-slides .slider-button-wrapper {
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#video-slider-wrapper .video-slides .slider-button-wrapper .btn {
    background: none;
    border: 1px solid white;
    border-radius: 5px;
}

#video-slider-wrapper .video-slides .video-content-wrapper {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    color: white;
}

#video-slider-wrapper .video-slides .main-title {
    line-height: 1.2;
    margin: 0 auto 14px;
    width: 90%;
    text-align: center;
}

#video-slider-wrapper .video-slides .baseline {
    line-height: 1.2;
    margin: 0 auto 14px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

#video-slider-wrapper .video-slides .video-content {
    position: absolute;
    display: flex;
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#video-slider-wrapper .video-slides .video-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#video-slider-wrapper .video-slides video {
    display: block;
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    width: 100%;
}

@media (max-width: 768px) {
    #video-slider-wrapper .video-slides .main-title {
        font-size: 2.4rem;
    }

    #video-slider-wrapper .video-slides .baseline {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}