/*
Theme Name: Basic Bootstrap 5
Author: Linkweb
Description: Empty theme for starting a custom Bootstrap 5 theme
Version: 1.0
*/

pre {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
    background-color: #1D1F21;
    color: #F0C674 !important;
    padding: 30px;
    margin: 15px;
    border-radius: 8px;
    word-break: break-all;
    word-wrap: break-word;
    overflow: auto;
    position: relative;
    z-index: 9;
}

* { scroll-behavior: smooth; }

html, body {
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

img {
    max-width: 100%;
    height: auto;
}

/*Responsive Videos*/
iframe[src*="youtu.be"],
iframe[src*="youtube"],
iframe[src*="vimeo"],
video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.fs-small {
    font-size: .875rem;
}

/*Slick buttons*/
.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #CCD3D8;
    margin: 0 4px;
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}

.slick-dots li.slick-active {
    width: 28px;
    background-color: #6366f1; 
}

.slick-dots li button {
    widtH: 100%;
    height: 100%;
    opacity: 0;
}

.modal-body .embed iframe {
    width: 100%;
}

/*Flex Settings*/
section.flex-content,
section.flex-content .container { position: relative; }
section.flex-content .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
section.flex-content .bg,
section.flex-content > video.embeded-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
section.flex-content > .embeded-youtube { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 177.78vh; height: 100vh; min-width: 100vw; min-height: 56.25vw; pointer-events: none; z-index: -1; }
section.flex-content img.bg,
section.flex-content > video.embeded-video { object-fit: cover; object-position: center; }