@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
/* colors: #7fb2ff, #4c3685, #c3b9d8*/
html {scroll-behavior: smooth;}
* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background-color: black;
    margin:0;
    background-image: url('img/down.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 60% 20%;
}
.bodydiv {
    background-image:url('img/left.png'), url("img/right.png"), url("img/leftdown.png");
    background-repeat: no-repeat;
    /*background-size: contain;*/
    background-position: left top, right, left bottom;
    background-size:30%, 30%, 10%;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}

h1 {
    color: white;
    text-align: center;
    padding: 30px;
}
.instalace_h1 {
    color: white;
    text-align: center;
    padding: 0px;
}
h2,h3,h4 {
    color: white;
}
.tarify_h2 {
    text-transform: uppercase;
    color: white;
}
p {
    color: white;
    line-height: 1.5;
    font-size: 18px;
}
table {
    background-color: #c6c0d4;
    border-collapse: collapse;
    border-radius: 10px;
}

th, td {
    padding: 15px;

}

.order_button {
    transition: all .5s ease;
    background-color: #4c3685;
    color: white;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    padding: 12px;
    outline: none;
    border-radius: 10px;
}
.order_button:hover {
    color: white;
    background-color: #7fb2ff;

}
hr{
    color:#c3b9d8;
    size: 6px;
}
.section_divider {
    width: 75%;
    margin: 30px auto;
}
/* FORMULAR */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none; 
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}
.step_iptv_device {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none; 
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.tab {
    display:none;
}

.tab_iptv_device {
    display: none;
}
#errorp {
    margin: 0;
    color: #e78585;
}
#emptyerrorp {
    margin:0;
    color: #e78585;
}
input.invalid {
    background-color: #cd2929;
}


/*MENU*/
/* colors: #7fb2ff, #4c3685, #c3b9d8*/
.logo {
    max-height: 64px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: black;
    color: #fff;
    background-image:url('img/up.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.nav-links a {
    color: #fff;
}

/*NAVBAR MENU*/
.menu {
    display: flex;
    gap: 1em;
    font-size: 24px;
}

.menu li:hover {
    background-color: #7fb2ff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.menu li {
    padding: 5px 14px;
}

select {
    border-radius: 10px;
    background-color: #7fb2ff;
    border: none;
    padding: 5px;
    color: white;
    font-size: inherit;
    font-family: inherit;
}

/*RESPONSIVE MENU*/
input[type=checkbox]{
    display:none;
}
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        background-color: black;
        top: 128px;
        right: 0;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }
    .menu li:hover {
        display: inline-block;
        background-color: #7fb2ff;
        transition: 0.3s ease;
    }
    .menu li + li {
        margin-top: 12px;
    }
    input[type=checkbox]:checked ~ .menu{
        display:block;
    }
    .hamburger {
        display: block;
    }

}
.content {
    display: flex;
    width: 50%;
    right: 20px;
    justify-content: flex-end;
}
#ceniky {
    text-align:center;
    overflow-x:auto;
    padding: 0 20px;
}
#tarify {
    text-align: center;
}

.middle {margin:auto}

.earth {
    max-width:400px;
    width:100%;
}

.toolkit {
    max-width: 100px;
    width: 100%;
    
}

/*univerzalni flexbox na alignovani veci do rows(horizontalne), ktery se na mobilni verzi zmeni do columns(vertikalne)*/
.magicflex {
    display: flex; 
    justify-content:center;
    gap:30px;
    align-items:center;
    flex-direction: row;

}

.instalace {
    display: flex; 
    flex-direction: column;
    align-items: center;

}

.instalace_content {
    display: flex;
    flex-direction: column;

}

@media only screen and (max-width: 720px) {
    .magicflex {
        flex-direction: column;
    }
    .content {
        width:95%;
    }
}



/*CONTACT FORMULAR*/
.contact_formular {
    text-align: center;
}

input, textarea {
    border: 3px solid #4c3685;
    padding: 10px;
    border-radius:10px;
    font-family: inherit;
    font-size: inherit;
    display:block;
    margin: 5px auto;
}
.submit_contactform {
    transition: all .5s ease;
    background-color: #4c3685;
    color: white;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    padding: 12px;
    border: 1px solid #4c3685;
    border-radius: 10px;
    padding: 10px;
    margin: 5px 0;
}
.submit_contactform:hover {
    color: white;
    background-color: #7fb2ff;
    cursor: pointer;
    font-family: inherit;
    border: 1px solid #7fb2ff;
}

/*RIGHTS*/
.rights {
    text-align: center;
}

.rights_p {
    font-size: 8px
}
.rights_h2 {
    color: white;
    font-size: 16px;
}

.baraky {
    max-width: 100px;
    width: 100%;
}

.rights_h2 {
    font-size: 16px;
}

.rights_flex {
    display: flex; 
    justify-content:center;
    gap:30px;
    align-items:center;
    flex-direction: row;

}

/*order form*/
.objednani {
    height: 630px;
    text-align: center;
}


/*responsive background*/
@media only screen and (max-width: 720px) {
    body {
        background-color: black;
        margin:0;
        background-image: none;
    }
    table {
        max-width: 100vw;
    }
    .instalace_content {
        display: flex;
        right: 20px;
        width: 95%;
    }
    .rights_p {
        left: 20px;
    }
}

/*scrollbar*/
body::-webkit-scrollbar {
    width: 20px;
  }
  
  body::-webkit-scrollbar-track {
    /*gradient scrollbar*/
    background: black;
    border-radius: 10px;
  }
  
  body::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, #7fb2ff 0%, #4c3685 100%);
    border-radius: 10px;
  }
  

.dalsibuttons {
    display:flex;
    justify-content: center;
    gap:10px;
}

select {
    border: 3px solid #4c3685;
    background-color: white;
    color:rgb(118, 118, 118);
    padding: 10px;
    border-radius: 10px;
    font-family: inherit;
    font-size: inherit;
    display: block;
    margin: 5px auto;
}

.jazyky_select {
    background-color:#7fb2ff;
    border-radius:10px;
    font-family: inherit;
    font-size: inherit;
    display: block;
    border: none;
    color: white;
}

.podminky {
    color:#7fb2ff;
}
.podminky:hover {
    color: #9dbceb;
}

.newtel_button {
    background-color: #7fb2ff;
    color: white;
    padding: 15px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    border-radius: 10px;
    border: none;
}
.newtel_button:hover {
    cursor: pointer;
}
.objednat input {
    width: 50%;
}

@media only screen and (max-width: 720px) {
.objednat input {
    width: 95%;
}
.contact_formular form {
    width: 95%;
}
}
.oznameni {
    max-width: 70%;
    border: 3px #7fb2ff solid; 
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.oznameni p {
    margin: 5px;
}
.centered_kestazeni h1 {
    padding: 10px !important;
}


#contact_formular {
    max-width: 600px; /* Set a max-width for the form container */
    margin: auto; /* Center align the form */
    padding: 20px; /* Add some padding around the form */
}

#contact_formular h2, #contact_formular p {
    text-align: center; /* Center align text */
}

.form-group {
    margin-bottom: 20px; /* Add space between form fields */
}

#contact .form-group input[type="text"],
#contact .form-group input[type="email"],
#contact .form-group textarea {
    width: 100%; /* Make form elements take full container width */
    padding: 10px; /* Add some padding inside form elements */
    border: 1px solid #ccc; /* Add a border */
    border-radius: 5px; /* Optionally round the borders */
}

.submit_contactform {
    display: block; /* Make the submit button a block element */
    width: 100%; /* Full width */
    padding: 10px; /* Padding for better touch */
    background-color: #007bff; /* Bootstrap primary color, or choose your own */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Round corners */
    cursor: pointer; /* Change cursor to pointer */
    font-size: 16px; /* Increase font size */
}

.submit_contactform:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.g-recaptcha {
    margin: 20px 0; /* Add some space around the captcha */
}
.g-recaptcha {
    width: 100%; /* Set the width to match the input fields */
    margin: 20px 0; /* Provide some top and bottom margin */
    display: flex; /* Use flexbox to center the captcha */
    justify-content: center; /* Center captcha horizontally */
}