body, head
{
    margin: 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

#nav
{
    background-color: #FFFFFF;
    width: 100%;
    user-select: none;
    height: 40px;
    position: fixed;
    top: 0;
    z-index: 100;
    /*filter: drop-shadow(0px 0px 10px #00000010);*/
}

#dbtdown {
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    background-color: black;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 5px;
}

#dbtdown:hover {
    background-color: #202020;
}

p
{
    margin: 0;
}

.end
{
    clear: both;
}

#logo
{
    float: left;
    margin-right: 60px;
    margin-left: 150px;
    cursor: pointer;
    transition: all 0.2s;
}

#opts
{
    float: left;
}

#oth
{
    float: right;
}

.opt 
{
    float: left;
    height: 32px;
    margin-left: 4px;
    padding-top: 8px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 1);
    transition: all 0.15s;
}


.opt:hover
{
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    transition: all 0.15s;
    background-color: #e9e9e9;
}

.opt:active
{
    background: #b9b9b9;
    transition: all 0.15s;
}


.optv 
{
    float: left;
    height: 32px;
    margin-right: 4px;
    padding-top: 8px;
    font-size: 16px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 1);
    transition: all 0.15s;
}

.optv:hover
{
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    transition: all 0.15s;
    background-color: #e9e9e9;
}

.optv:active
{
    box-shadow: inset 0px 0px 0px 21px rgba(0, 0, 0, 0.3);
    transition: all 0.15s;
}

.optv:nth-child(2)
{
    margin-right: 100px;
}

#title
{
    float: left;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 6px;
}

#logoimg
{
    margin-top: 5px; 
    float: left;
}

#promo
{
    min-height: 659px; 
}

#promoimg
{
    width: 100%;
    min-height: 659px; 
    transition: opacity 0.5s ease-in-out;
    user-select: none;
    object-fit: cover;
    max-height: 659px;
}

#promomain
{
    text-align: center;
    width: 450px;
    user-select: none;
    position: absolute; 
    top: 285px;
    left: calc(50% - 225px);
    margin-top: -30px;
}

#promomain h1
{
    margin: 0;
    letter-spacing: 1px;
    font-size: 150%;
}

#promomain h4
{
    margin: 0;
    font-weight: normal;
}

#promomain button
{
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    background-color: black;
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif !important;
    
}
#promomain button:hover
{
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(.28,1.79,.48,1.03);
}

#probts
{
    font-weight: normal;
    margin-right: 15px;
    cursor: pointer;
}

#probuttons
{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 10px;
}

#sellec
{
    width: 100%;
}

@media screen and (max-width: 1452px) 
{    
    #logo
    {
        display: none;
    }
}

@media screen and (max-width: 810px) 
{    
    #oth
    {
        display: none;
    }
    
}

input[type="radio"] 
{
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid black;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

input[type="radio"]:checked 
{
    background-color: black;
    border-color: white;
    transform: scale(1.25);
}

/* XD */
.scroll {
    position: relative;
    display: flex;
    width: 1000px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.scroll div {
    display: flex;   
    flex-shrink: 0;    
    min-width: 100%;  
    animation: scroll var(--time) linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.imgBox div 
{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.imgBox img 
{
    max-width: 100px;
    scale: 0.8;
    margin-left: 50px;
    margin-right: 50px;
    user-select: none;
}

@keyframes scroll2 
{
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

::selection {
  color: white;
  background: black;
}

/* width */
::-webkit-scrollbar {
  width: 16px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #9e9e9e;
  border-radius: 50px;
  border-size: 5px;
  border-color: #f1f1f1;
  border-style: solid;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8e8e8e; 
}

input[type="radio"] {
    transition: all 0.5s;
}
input[type="radio"]:hover {
    opacity: 0.75;
}

html {
    scroll-behavior: smooth;
}

#more {
    scroll-margin-top: 60px;
    padding-bottom: 10px;
}

#content {
    margin-top: -40px;
}

.enttr {
    transition: all 0.2s cubic-bezier(.28,1.79,.48,1.03);
}

.aenttr {
    transition: all 0.2s cubic-bezier(.28,1.79,.48,1.03);
}

.enttr:focus {
    box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 1);
}

.aenttr:focus {
    box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 1);
}

#hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; 
}
.bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
    transition: 0.4s cubic-bezier(.28,1.79,.48,1.03);
}

/* ======================================================= */
/*  TYLKO DLA TELEFONÓW                                    */
/* ======================================================= */

@media screen and (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    #nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 60px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        background-color: #FFFFFF !important;
        z-index: 999 !important;
    }

    #logo {
        float: none !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    #title { margin-top: 0 !important; }

    #hamburger {
        display: block !important;
        position: absolute !important;
        right: 20px !important;
    }

    #nav-links {
        position: fixed !important;
        top: 60px !important; 
        right: -100% !important; 
        width: 260px !important;
        height: calc(100vh - 60px) !important;
        background-color: #f9f9f9 !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease-in-out !important;
        z-index: 998 !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        padding-top: 20px !important;
    }

    body.menu-open #nav-links {
        right: 0 !important;
    }

    body.menu-open .bar:nth-child(1) { transform: translate(0, 8px) rotate(-45deg); }
    body.menu-open .bar:nth-child(2) { opacity: 0; }
    body.menu-open .bar:nth-child(3) { transform: translate(0, -8px) rotate(45deg); }

    #opts, #oth {
        float: none !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
    }

    .opt, .optv {
        float: none !important;
        width: 100% !important;
        margin: 8px 0 !important;
        padding: 12px 10px !important; 
        height: auto !important; 
        text-align: center !important;
        background-color: #fafafa;
        box-sizing: border-box !important;
        box-shadow: none !important;
        justify-content: center !important;
    }

    .opt p, .optv p {
        margin: 0 !important;
        font-size: 15px !important;
        white-space: normal !important; 
    }

    .optv:nth-child(2) {
        margin-right: 0 !important; 
    }

    #content p, 
    #content center p {
        width: 90% !important;
        padding: 0 15px !important;
        box-sizing: border-box;
    }

    #content iframe {
        width: 90vw !important;
        height: 50vw !important; 
    }

    #promomain > h4 {
        display: none !important; 
    }

    #promo {
        position: relative !important;
        min-height: 400px !important; 
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        margin-top: 60px !important; 
    }

    #promoimg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
        z-index: -1 !important; 
    }

    #promomain {
        position: relative !important; 
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 0 !important;
        width: 90% !important;
        padding: 20px !important;
        box-sizing: border-box;
        border-radius: 15px !important;
    }
    
    #promomain h1 {
        font-size: 28px !important;
    }

    #sellec {
        margin-top: 10px;
    }

    #more {
        width: 95%; 
        font-size: 28px;
    }

    #content > center > div.scroll.imgBox {
        width: 100%;
    }
}



