:root{
    --purple: #82296C;
    --yellow: #F8C816;
    --light_purple: #F8E6F6;
    --light_gray: #F5F5F5;
    --white: #FFFFFF;
    --page_width: 1230px;
    --extra_width: 1450px;
    --black: #031602;
    --transparent: #4D4D4D;
}
.open-sans-variable {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}
.section_content {
    z-index:1;
}
h1{
    font-weight: 600;
}
h2{
    font-weight: 600;
}
h3{
    font-weight: 600;
}
body{
    margin:0;
}
img{
    width:100%;
}
.bold{
    font-weight:600;
}
.bold-7{
    font-weight:700;
}
.bar_button {
    display: none;
    height: 50%;
    width: 4em;
}
.bar1, .bar2, .bar3 {
    width: 45px; 
    height: 6px;  
    background-color: var(--white);
    margin: 3.3px;
    transition: all 500ms;
}
.bar_button.open .bar2 {
    width: 0;
    transition: all 500ms;
}
.bar_button.open .bar1 {
    transform: translateY(11px) rotate(45deg);
    transition: all 500ms;
}
  
.bar_button.open .bar3 {
    transform: translateY(-11px) rotate(-45deg);
    transition: all 500ms;
}
.col{
    flex-basis: auto !important;
}
.page_width{
    width: var(--page_width);
}
.extra_width{
    width: var(--extra_width);
}
.text_center{
    text-align: center;
}
.w-25{
    width:25%;
}
.w-30{
    width:30%;
}
.w-35{
    width:35%;
}
.w-40{
    width:40%;
}
.w-60{
    width:60%;
}
.w-50{
    width:50%;
}
.w-70{
    width:70%;
}
.w-100{
    width:100%;
}
.h-100{
    height:100%;
}
.h-90{
    height:90%;
}
.m-0{
    margin: 0 !important;
}
.m-1{
    margin: 1em !important;
}
.mr-1{
    margin-right:1em;
}
.mr-05{
    margin-right:0.5em;
}
.ml-1{
    margin-left:1em;
}
.ml-3{
    margin-left:3em;
}
.ml-05{
    margin-left:0.5em;
}
.mb-1{
    margin-bottom: 1em;
}
.mb-15{
    margin-bottom: 1.5em;
}
.mb-3{
    margin-bottom: 3em;
}
.mb-2{
    margin-bottom: 2em;
}
.mt-1{
    margin-top: 1em;
}
.mt-5{
    margin-top: 5em;
}
.mb-5{
    margin-bottom: 5em !important;
}
.mx-1{
    margin: 0 1em;
}
.p-0{
    padding: 0 !important;
}
.p-05{
    padding: 0.5em !important;
}
.p-1{
    padding: 1em !important;
}
.p-2{
    padding: 2em !important;
}
.p-3{
    padding: 3em !important;
}
.p-50{
    padding: 50px;
}
.pr-0{
    padding-right: 0 !important;
}
.pl-0{
    padding-left: 0 !important;
}
.pl-2{
    padding-left: 2em !important;
}
.pr-2{
    padding-right: 2em !important;
}
.pb-5{
    padding-bottom: 5em !important;
}
.pt-1{
    padding-top: 1em !important;
}
.pt-2{
    padding-top: 2em !important;
}
.pt-3{
    padding-top: 3em !important;
}
.pt-5{
    padding-top: 5em !important;
}
.py-1{
    padding: 1em 0 !important;
}
.px-1{
    padding: 0 1em !important;
}
.px-2{
    padding: 0 2em !important;
}
.bg_black{
    background-color: var(--black) !important;
}
.bg_purple{
    background-color: var(--purple) !important;
}
.bg_yellow{
    background-color: var(--yellow) !important;
}
.bg_light_purple{
    background-color: var(--light_purple) !important;
}
.bg_white{
    background-color: var(--white) !important;
}
.bg_light_gray{
    background-color: var(--light_gray) !important;
}
.br-12{
    border-radius: 12px ;
}
.brt-12{
    border-radius: 12px 12px 0 0;
}
.brb-12{
    border-radius: 0 0 12px 12px;
}
.brl-12{
    border-radius: 12px 0 0 12px ;
}
.brr-12{
    border-radius: 0 12px 12px 0;
}
.bl-1{
    border-left: 1px solid var(--white);
}
.br-1{
    border-right: 1px solid var(--white);
}
.propagace{
    display:none;
}
.propagace_container .propagace{
    left: 140px;
    margin: -80px 0;
    position: relative;
    width: 150px;
    display:block;
}
.border{
    border: var(--gray) 1px solid;
}
.border_purple{
    border-color: var(--purple);
}
.border_light_gray{
    border-color: var(--light_gray);
}
.icon_box{
    padding: 50px !important;
    width: 33.3333% !important;
    justify-content: space-between;
}
.icon_box.show{
    width: 50% !important;
}
.icon_box_header{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.icon_box_header img{
    width: 80px;
    margin-right: 1em;
}
.icon_box.show_other{
    padding: 50px 20px !important;
    width: 25% !important;
}

.icon_box_content{
    display: none;
    opacity: 0;
}
.icon_box_content.show{
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
}
.icon_box_content_alt{
    display: none;
    opacity: 0;
}
.icon_box_content_alt.show{
    display: block;
    opacity: 1;
}
.map_background{
    background-image: url(/static/images/Datonet-mapanaweb-Polabi-barevny-sloupy-fialova-Loucen.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1650px;
    background-position-x: right;
    padding-top: 19em !important;
    background-position-y: top;
}
.info_background{
    background-image: url(/static/images/Datonet-jakprobihapripojenikinternetu-simple.svg)
}
.image_info{
    border-radius: 12px;
    object-fit: cover;
    height: 100%;
}
.image_info_shift{
    object-position: 49%;
}
.image_info_shift_2{
    padding: 2em 0;
    object-fit: contain;
}
.max_height_354{
    max-height: 354px;
}
.no_underline{
    text-decoration: none;
}
*:has(> .margin-middle) {
    margin: -1em 1em;
}
section{
    width: 100%;
    display: flex;
    justify-content: center;
}
.menu_section{
    position:sticky;
    top:0;
    z-index: 100;
}
.page_header{
    position: sticky;
    top: 0;
    z-index: 100;
}
.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}
.navbar{
    transition: all 200ms;
    flex: none;
    order: 1;
    flex-grow: 0;
}
.navbar a{
    text-decoration:  none;
}
.logo{
    width: 170px;
    height: 50px;
}
.link{
    text-decoration: none;
}
.promo_bg{
    z-index: -99;
    position: absolute;
    top: 0;
    width: 100%;
    height: 650px;
    background-image: url("/static/images/datonet_01.png");
    background-size: cover;
    background-position-y: center;
}
.nabidka_promo_bg{
    background-position-y: -80px;
    background-position-x: -1200px;
}
.service_box_content .box_content{
    padding:0;
}
.text_white{
    color: var(--white) !important;
}
.text_white a{
    color: var(--white) !important;
}
.text_black{
    color: var(--black) !important;
}
.text_black h2{
    color: var(--black) !important;
}
.text_black span{
    color: var(--black) !important;
}
.text_yellow{
    color: var(--yellow) !important;
}
.text_yellow a{
    color: var(--yellow) !important;
}
.text_purple{
    color: var(--purple) !important;
}
.text_purple a{
    color: var(--purple) !important;
}

.button{
    padding: 12px 24px;
    background: var(--purple);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
}
.slick-next{
    right: 80px;
    top: 40%;
}
.slick-prev{
    z-index: 1;
    left: 15px;
    top: 40%;
}
.slick-next::before{
    color: var(--yellow);
}
.slick-prev::before{
    color: var(--yellow);
}
.slick-next::before{
    background-size: 80px 80px;
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-image: url("/static/images/right-arrow-svgrepo-com.svg");
    transition: 600ms;
    filter: brightness(0) saturate(100%) invert(98%) sepia(67%) saturate(2678%) hue-rotate(339deg) brightness(98%) contrast(96%);}
.slick-prev::before{
    background-size: 80px 80px;
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-image: url("/static/images/left-arrow-next-svgrepo-com.svg");
    transition: 600ms;
    filter: brightness(0) saturate(100%) invert(98%) sepia(67%) saturate(2678%) hue-rotate(339deg) brightness(98%) contrast(96%);}
.button_long{
    width: 100%;
    display:flex;
    justify-content: center;
}
.button_yellow{
    background: var(--yellow);
    color: var(--black);
}
.button_white{
    background: var(--transparent);
    opacity: 50%;
    color: var(--white);
    border: 2px solid var(--white)
}
.form_button{
    padding:18px !important;
}
.flex{
    display:flex;
}
.flex_end{
    align-items:flex-end !important;
}
.flex_vertical{
    display:flex;
    flex-direction: column !important;
}
.align_center{
    align-items: center !important;
}
.justify_center{
    justify-content: center !important;
}
.box{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 50px;
    isolation: isolate;
}
.box_content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 15px;
}
.half-bg {
    position: absolute;
    top: 730px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--white);
}
.info_button_box{
    width: 100%;
    display: flex;
    height: 100%;
    align-items: flex-end;
 }
.position_absolute{
    left: 245px;
    position: absolute;
    top: 220px;
}
.info_expandable{
    display: none;
}
.info_expandable.show{
    display: block;
}
.input{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    background: var(--white);
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: rgba(77, 77, 77, 0.1);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.box_shadow{
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.menu_section {
    transition: background-color 0.3s ease-in-out;
}
.menu_box_shadow{
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
#menu_button {
    transition: background-color 0.3s ease-in-out;
}
.link:hover{
    text-decoration:underline;
}
.uppercase{
    text-transform:uppercase;
}
.uppercase{
    text-transform:uppercase;
}
.text_white h3{
    color: var(--white)
}
.text_white h2{
    color: var(--white)
}
.align_center{
    align-items: center;
}
.scheduleHours{
    display: flex;
    text-align: left;
    flex-direction: column;
}
.scheduleDays{
    display: flex;
    flex-direction: column;
    margin-right:3em;
}
.scheduleContent{
    display: flex;
    justify-content: space-between;
}
.service_box{
    border-radius: 12px;
    margin: 1em;
    margin-top: 0;
    padding: 0 !important;
    box-shadow: 5px 5px 37px rgba(50, 20, 50, .5019607843);
    transform: scale(0.9);
}
#section_14 .service_box:hover{
    transform: scale(1);
}
.service_box_content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.company_service_box .box_content{
    padding-right: 30px;
    padding-left: 30px;
}
#section_103 .box_content{
    background-color: var(--white);
    border-radius: 20px;
    padding-top: 20px;
    margin-left: 30px
}
.image-int{
    width:35px;
}
.image-int-2{
    width:55px;
}
.programy {
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 15px;
    justify-content: center;
}
.programy img{
    width: auto;
}
.small_text{
    color: var(--gray);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}
.company_service_box h2{
    color: var(--purple) !important;
}
.footer_img{
    width:65%;
}
.footer_img_link img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(58deg) brightness(101%) contrast(100%);
}
.contacts_image_link img{
    filter: brightness(0) saturate(100%) invert(23%) sepia(47%) saturate(1544%) hue-rotate(275deg) brightness(92%) contrast(97%);
}
input, textarea, select, button {
    &:focus {
        outline-color: var(--purple);
    }
}
input .button:hover {
    cursor:pointer;
}
.background_image_datonet_23{
    background-image: url("/static/images/global-network.png");
    background-position-x: 130%;
    background-size: 63%;
    background-repeat: no-repeat;
}
.background_image_datonet_24{
    background-image: url("/static/images/television.png");
    background-position-x: 130%;
    background-size: 63%;
    background-repeat: no-repeat;
}
.background_image_datonet_25{
    background-image: url("/static/images/company.png");
    background-position-x: 130%;
    background-size: 63%;
    background-repeat: no-repeat;
}
.background_image_datonet_26{
    background-image: url("/static/images/datonet_26.png");
    background-position-x: right;
    background-position-y: bottom;
    background-size: 25%;
    background-repeat: no-repeat;
}
.scheduleItem{
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}
.download_link{
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}
.promo-carousel-container{
    width:100%;
    display: flex;
    justify-content: center;
    padding-top: 8em;
    padding-bottom: 8em;
}
.promo-carousel{
    margin-top: -7em;
    margin-bottom: -9.9em;
}
.hover_size:hover{
    transform: scale(1.1);
}
.modal{
    /* Make sure the modal is positioned relative to the viewport */
    position: fixed;
    /* Center horizontally */
    left: 50%;
    /* Center vertically */
    top: 50%;
    /* Correct for the modal's own size */
    transform: translate(-50%, -50%);
    /* Ensure the modal is above other content */
    z-index: 1000; /* Or any high value */

    /* Optional: Add these for better appearance */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60%; /* Or any desired width */
    max-height: 80%; /* Ensure it doesn't overflow the screen */
    overflow: auto; /* Add scrollbars if content overflows */
    display:none;
}
.modal.show{
    display:flex;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Should be below the modal */
    display: none; /* Hide the backdrop by default */
}

.modal-backdrop.show {
    display: block; /* Show the backdrop when it has the 'show' class */
}
.h1_with_icon{
    display: flex;
    align-items: center;
}
.h1_with_icon img{
    width: 150px;
}
@media only screen and (max-width: 1300px) {
    .section_content{
        padding-left: 3em;
        padding-right: 3em;
    }
    .menu_section .section_content{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .promo_section{
        margin-top:2em;
    }
    .slick-next{
    right: 70px;
    top: 40%;
    }
    .slick-track{
        display: flex !important;
    }
    .slick-prev{
        z-index: 1;
        left: 5px;
        top: 40%;
    }
    .half-bg{
        top: 671px;
    }
    .px-2{
        padding: 0 1em !important
    }
}
@media only screen and (max-width: 1000px) {
    .page_width{
        width:100%;
    }
    #promo-carousel{
        display:none;
    }
    #promo-carousel-mobile{
        display: block !important;
        max-height: none;
    }
    .brl-12{
        border-radius: 12px 12px 0 0;
    }
    .brr-12{
        border-radius: 0 0 12px 12px;
    }
    .bl-1{
        border-top: 1px solid var(--white);
    }
    .half-bg{
        top: 750px;
    }
    .bar_button{
        height: 4em;
        padding: 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .section_content{
        padding-left: 1em;
        padding-right: 1em;
    }
    .mobile-w-100{
        width:100% !important;
    }
    .mobile_vertical{
        flex-direction: column !important;
    }
    .navbar_container{
        height: 0;
        opacity: 0;
        background-color: var(--purple);
        position: absolute;
        top: 6em;
        transition: all 0.3s ease-in-out;
        width: 100%;
        padding: 0 0 1em 0;
    }
    .navbar{
        display: none;
        width: 100%;
        align-items: center;
    }
    .navbar .col-2{
        width: 100%;
        padding: 0.8em 0;
        max-width: none;
    }
    .menu_logo{
        display: flex;
        margin-bottom: 1em;
        padding: 0 2em;
        width: 100%;
        justify-content: space-between;
    }
    .menu_logo img{
        height: 100%;
        width: auto;
    }
    .header{
        gap: 0;
        padding-top: 1em;
        padding-bottom: 1em;
    }
    .mobile-b-0{
        border: none;
    }
    .mobile-m-0{
        margin:0 !important;
    }
    .mobile-my-1{
        margin:1em 0 !important;
    }
    .mobile-p-0{
        padding:0 !important;
    }
    .mobile-pb-0{
        padding-bottom: 0 !important;
    }
    .mobile-p-1{
        padding:1em !important;
    }
    .mobile-align-center{
        text-align:center;
    }
    .mobile-mt-0{
        margin-top: 0 !important;
    }
    .mobile-mt-1{
        margin-top: 1em !important;
    }
    .mobile-mb-1{
        margin-bottom: 1em !important;
    }
    .mobile-display-none{
        display: none;
    }
    .font-size-08{
        font-size: 0.8em;
    }
    .promo_bg{
        background-position-x: center;
        background-position-y: top;
        height: 100%;
        background-repeat: no-repeat;
    }
    .nabidka_promo_bg{
        background-size: 800vw !important;
        background-position-y: top !important;
        background-position-x: -2280px !important;
    }
    .icon_box{
        height: auto !important;
        padding: 50px !important;
        width: 100% !important;
        justify-content: space-between;
    }
    .availability_form{
        margin: 0 !important;
    }
    .mobile_display_none{
        display: none;
    }
    .promo-carousel {
        margin-bottom: 0 !important;
    }
     .map_background{
         padding-bottom: 0 !important;
         background-position-x: 90%;
         background-size: 280%;
     }
     .loader{
        top:205px;
     }
     .modal{
        width:90%;
     }
     .menu_logo_home_link{
        width:80%;
     }
}
