@charset "UTF-8";

:root {
    /* COLOR VARIATIONS */
    --g-color-white: white; /* Definice bílé pro celý web */
    --g-color-black: black; /* Definice černé pro celý web */

    --g-color-1: #02569e; /* Kontrastní barva webu (aktivní button,  ) */
    --g-color-1-hover: #002947;
    --g-color-2: #0f0f0f; /* Barva pozadí webu (neaktivní button,  */
    --g-color-2-hover: #1a1a1a;
    --g-color-3: #474747; /* Třetí barva () */
    --g-color-3-hover: #303030;
    --g-color-4: #be172a;
    --g-color-4-hover: #990c18;
    --g-color-5: white;
    --g-color-5-hover: #ebebeb;
    --g-color-6: #fbedf0;
    --g-color-6-hover: #d8c7ca;

    --g-color-7: red;
    --g-color-8: red;

    --g-module-bg-color: #eeeeee;

    /* ANIMATION COLOR */
    --anim-color-1: #xx;
    --anim-color-2: #xx;
    --anim-color-3: #xx;
    --anim-color-4: #xx;

    /* ANIMATION COLOR - UNDERLINE */
    --underline-color-1: var(--g-color-1);
    --underline-color-2: var(--g-color-2);

    /* FONT DEFINITIONS */
    --font-primary: 'Roboto', sans-serif;
    --font-primary-condensed: 'Roboto Condensed', sans-serif;
    --font-secondary: 'Barlow', sans-serif;
    --font-secondary-condensed: 'Barlow Condensed', sans-serif;

    /* ADDITIONAL PROPERTIES */
    --g-btn-radius: 4px; /* Pro manipulaci s border-radiusem tlačítek na webu */
    --g-base: 16; /* Pro převod mezi px/rem */

    /* TRANSITION TIMING */
    --g-img-transition-timing: all 1s;
    --g-img-transition-transform: scale(1.1);

    /* BREAKPOINT OVERVIEW */
    /*--grid-breakpoints-sm: 576px;*/
    /*--grid-breakpoints-md: 768px;*/
    /*--grid-breakpoints-lg: 992px;*/
    /*--grid-breakpoints-xl: 1300px;*/
}

.font-family-primary {font-family: var(--font-primary);}
.font-family-secondary {font-family: var(--font-secondary);}

.opacity-01 {opacity: 0.1;}
.opacity-07 {opacity: 0.7;}
.opacity-08 {opacity: 0.8;}
.opacity-09 {opacity: 0.9;}
.opacity-1 {opacity: 1;}

.force-link-color-black, .force-link-color-black:hover { color: black!important; }
.force-link-color-white, .force-link-color-white:hover { color: white!important; }
.force-link-color-gray, .force-link-color-gray:hover { color: #9a9998 !important}

.force-link-color-1, .force-link-color-1:hover { color: var(--g-color-1) !important; }
.force-link-color-2, .force-link-color-2:hover { color: var(--g-color-2) !important; }
.force-link-color-3, .force-link-color-3:hover { color: var(--g-color-3) !important; }
.force-link-color-4, .force-link-color-4:hover { color: var(--g-color-4) !important; }
.force-link-color-5, .force-link-color-5:hover { color: var(--g-color-5) !important; }
.force-link-color-6, .force-link-color-6:hover { color: var(--g-color-6) !important; }
.force-link-color-7, .force-link-color-7:hover { color: var(--g-color-7) !important; }

.color-primary { color: var(--g-color-1);}
.color-secondary { color: var(--g-color-2);}
.color-tertiary { color: var(--g-color-3);}
.color-quaternary { color: var(--g-color-4);}
.color-quinary { color: var(--g-color-5);}
.color-senary { color: var(--g-color-6);}
.color-septenary { color: var(--g-color-7);}

.background-color-primary { background-color: var(--g-color-1);}

.font-size-px-12 { font-size: 0.75rem !important;}
.font-size-px-13 { font-size: 0.8125rem !important;}
.font-size-px-14 { font-size: 0.875rem !important;}
.font-size-px-15 { font-size: 0.9375rem !important;}
.font-size-px-16 { font-size: 1rem !important;}
.font-size-px-18 { font-size: 1.125rem !important;}
.font-size-px-20 { font-size: 1.25rem !important;}
.font-size-px-22 { font-size: 1.375rem !important;}
.font-size-px-24 { font-size: 1.5rem !important;}
.font-size-px-26 { font-size: 1.625rem !important;}
.font-size-px-28 { font-size: 1.75rem !important;}
.font-size-px-32 { font-size: 2rem !important;}
.font-size-px-36 { font-size: 2.25rem !important;}
.font-size-px-40 { font-size: 2.5rem !important;}
.font-size-px-45 { font-size: 2.8125rem !important;}
.font-size-px-55 { font-size: 3.45rem !important;}

.font-weight-ps-thin { font-weight: 100 !important; }
.font-weight-ps-extra-light { font-weight: 200 !important; }
.font-weight-ps-light { font-weight: 300 !important; }
.font-weight-ps-regular { font-weight: 400 !important; }
.font-weight-ps-medium { font-weight: 500 !important; }
.font-weight-ps-semi-bold { font-weight: 600 !important; }
.font-weight-ps-bold { font-weight: 700 !important; }
.font-weight-ps-extra-bold { font-weight: 800 !important; }
.font-weight-ps-black { font-weight: 900 !important; }

a:hover .text-decoration-hover {text-decoration: underline;}

/* PRE-DEFINED ANIMATIONS  (ANIM) */
.anim-brightness { -webkit-filter: brightness(50%); transition: all 1s ease;}
.anim-brightness:hover { -webkit-filter: brightness(100%); transition: 1s ease; }

.anim-underline-right { position: relative!important; overflow: hidden!important; text-decoration: none!important;}
.anim-underline-right::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: var(--underline-color-1); transition: opacity 300ms, transform 300ms; opacity: 1;}
.anim-underline-right::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--underline-color-2); transition: opacity 300ms, transform 300ms; opacity: 1; transform: translate3d(+105%, 0, 0); }
.anim-underline-right:hover::after,
.anim-underline-right:focus::after { text-decoration: none!important; opacity: 1; transform: translate3d(0, 0, 0);}

.anim-underline-left {position: relative!important; overflow: hidden!important; text-decoration: none!important;}
.anim-underline-left::before {content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: var(--underline-color-1); transition: opacity 300ms, transform 300ms; opacity: 1; }
.anim-underline-left::after {content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--underline-color-2); transition: opacity 300ms, transform 300ms; opacity: 1; transform: translate3d(-100%, 0, 0); }
.anim-underline-left:hover::after,
.anim-underline-left:focus::after {text-decoration: none!important; opacity: 1; transform: translate3d(0, 0, 0); background-color: var(--underline-color-2); }

.anim-underline-center {position: relative!important; overflow: hidden!important; text-decoration: none!important;}
.anim-underline-center::before {content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: var(--underline-color-1); transition: opacity 300ms, transform 300ms; opacity: 1; }
.anim-underline-center::after {content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--underline-color-2); transition: opacity 300ms, transform 300ms; opacity: 1; transform: scale(0); transform-origin: center;}
.anim-underline-center:hover::after,
.anim-underline-center:focus::after {transform: scale(1);}

.anim-underline-center-light {position: relative!important; overflow: hidden!important; text-decoration: none!important;}
.anim-underline-center-light::after {content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background-color: var(--underline-color-1); transition: opacity 500ms, transform 500ms; opacity: 1; transform: scale(0); transform-origin: center;}
.anim-underline-center-light:hover::after,
.anim-underline-center-light:focus::after {transform: scale(1);}

/*--breakpoints-sm: 576px;*/
/*--breakpoints-md: 768px;*/
/*--breakpoints-lg: 992px;*/
/*--breakpoints-xl: 1300px;*/
@media(min-width: 576px){
    .w-sm-50 {width: 50% !important}
    .w-sm-100{width: 100% !important}.h-sm-100{height:100% !important}
}
@media(min-width: 768px){
    .w-md-50 {width: 50% !important}
    .w-md-100{width: 100% !important}.h-md-100{height:100% !important}
}
@media(min-width: 992px){
    .w-lg-50 {width: 50% !important}
    .w-lg-100{width: 100% !important}.h-lg-100{height:100% !important}
}
@media(min-width: 1300px){
    .w-xl-50 {width: 50% !important}
    .w-xl-100{width: 100% !important}.h-xl-100{height:100% !important}
}

html {
    scroll-behavior: smooth;
}

a:not(.zero-impact), a:not(.zero-impact):hover, a:not(.zero-impact):focus {
    color: var(--g-color-1);
}

a[href^="mailto:"], a[href^="tel:"] {
    white-space: nowrap;
}

@media(min-width: 992px){
    .text-lg-justify {
        text-align: justify !important;
    }
}

.position-absolute-top-left {
    position: absolute;
    top: 0;
    left: 0;
}

/* scroll lock for whole body when mobile menu is visible */
@media (max-width: 991px) {
    .lock-scroll {
        overflow: hidden;
    }
}

/* Light gallery thumb border */
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--g-color-1) !important;
    box-shadow: 0 0 3px 1px var(--g-color-1) !important;
}

.mw-1920 {
    max-width: 1920px !important;
}

/*#region custom utilites */

.bg-with-custom-gradient {
    background: linear-gradient(90deg, var(--g-color-black) 16%, var(--g-color-1) 86%);
}

.transition-all-03-ease {
    transition: all 0.3s ease-in-out;
}

.mw-150px {max-width: 150px !important;}
.mw-75px {max-width: 75px !important;}
.mw-55px {max-width: 75px !important;}

.mw-50 {max-width: 50% !important;}

.pointer-events-none {
    pointer-events: none !important;
}
.pointer-events-all {
    pointer-events: all !important;
}

.light-underline {
    border-bottom: 2px solid rgba(128,128,128,0.3);
}

.transform-translateZ-0 {
    transform: translateZ(0);
}

.outline-none.a:focus, .outline-none.a:focus-visible, .outline-none.a:focus-within,
.outline-none.a:hover, .outline-none.a:active, .outline-none.a:visited, .outline-none.a:target {
    outline: none;
}

.global-link-template-1 {
    color: var(--g-color-2);
    text-decoration: underline;
}
.global-link-template-1:hover {
    color: var(--g-color-3);
}

.global-link-template-2 {
    color: var(--g-color-7);
    text-decoration: underline;
}

.global-object-fit-cover-center {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.global-object-fit-contain-center {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

*:focus-visible {
    outline: none;
}

/*endregion*/

/*a {*/
/*    color: var(--g-color-2);*/
/*    text-decoration: none;*/
/*    transition: all 0.1s ease-in-out;*/
/*}*/

/*a:hover {*/
/*    color: var(--g-color-1);*/
/*    text-decoration: none;*/
/*}*/

/*a[href='tel'],*/
/*a[href='mailto'] {*/
/*    white-space: nowrap;*/
/*}*/

body,
.CSS1Compat,
.CSS2Compat,
.CSS3Compat {
    font-family: var(--font-primary) !important;
    /*max-width: 1920px;*/
    margin-left: auto;
    margin-right: auto;
}

/*#region Vnitřní vzhled rubrik */

/*region Headers */

.custh1 {
    display: inline-block;
    font-size: 40px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--g-color-2);
}

.custh1 .h1-hr {
    width: 100%;
    border-bottom: solid 3px;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 0;
}

h2, .h2 { font-size: calc(20 / var(--g-base) * 1rem); }
h3, .h3 { font-size: calc(18 / var(--g-base) * 1rem); }
h4, .h4 { font-size: calc(16 / var(--g-base) * 1rem); }

@media(min-width: 768px){
    h2, .h2 { font-size: calc(24 / var(--g-base) * 1rem); }
    h3, .h3 { font-size: calc(22 / var(--g-base) * 1rem); }
    h4, .h4 { font-size: calc(20 / var(--g-base) * 1rem); }
}
@media(min-width: 992px){
    h2, .h2 { font-size: calc(26 / var(--g-base) * 1rem); }
    h3, .h3 { font-size: calc(24 / var(--g-base) * 1rem); }
    h4, .h4 { font-size: calc(22 / var(--g-base) * 1rem); }
}
@media(min-width: 1300px){
    h2, .h2 { font-size: calc(30 / var(--g-base) * 1rem); }
    h3, .h3 { font-size: calc(26 / var(--g-base) * 1rem); }
    h4, .h4 { font-size: calc(22 / var(--g-base) * 1rem); }
}
/*endregion Headers */

.module-wysiwyg1,.CSS1Compat,
.module-wysiwyg2,.CSS2Compat,
.module-wysiwyg3,.CSS3Compat {
    font-family: var(--font-primary);
}

.module-wysiwyg1 img,.CSS1Compat img,
.module-wysiwyg2 img,.CSS2Compat img,
.module-wysiwyg3 img,.CSS3Compat img {
    max-width: 100%;
    max-height: 100%;
}

.module-wysiwyg1 .rubrika-title,.CSS1Compat .rubrika-title,
.module-wysiwyg2 .rubrika-title,.CSS2Compat .rubrika-title,
.module-wysiwyg3 .rubrika-title,.CSS3Compat .rubrika-title {
    font-weight: 800;
}

.module-wysiwyg1 blockquote p,.CSS1Compat blockquote p,
.module-wysiwyg2 blockquote p,.CSS2Compat blockquote p,
.module-wysiwyg3 blockquote p,.CSS3Compat blockquote p {
    margin-bottom: 0;
}

.module-wysiwyg1 .row.module-gallery,.CSS1Compat .row.module-gallery,
.module-wysiwyg2 .row.module-gallery,.CSS2Compat .row.module-gallery,
.module-wysiwyg3 .row.module-gallery,.CSS3Compat .row.module-gallery {
    margin-top: 40px;
}

.module-wysiwyg1 a,.CSS1Compat a,
.module-wysiwyg2 a,.CSS2Compat a,
.module-wysiwyg3 a,.CSS3Compat a {
    color: var(--g-color-black);
    border-bottom: 1px solid var(--g-color-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.27s;
    cursor: pointer;
}


.module-wysiwyg1 .lg_youtube_item:after,
.module-wysiwyg2 .lg_youtube_item:after,
.module-wysiwyg3 .lg_youtube_item:after {
    content: "";
    height: 64px;
    width: 88px;
    position: absolute;
    left: calc(50% - 44px);
    top: calc(50% - 32px);
    pointer-events: none;
    opacity: .8;
    background: url("/_data/styly/img/ui/youtube-play.png") 0 -60px no-repeat;
}

#tabs-popis img {
    max-width: 100%;
}

#tabs-popis table {
    border-collapse: collapse;
    width: 100% !important;
}

#tabs-popis table td,
#tabs-popis table th {
    border: 1px solid #ddd;
    padding: 8px;
}

#tabs-popis table tr:first-child {
    background-color: var(--g-color-1);
}

#tabs-popis table tr:first-child td {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

#tabs-popis table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#tabs-popis table tr:nth-child(n+2):hover {
    background-color: #ddd;
}

#tabs-popis table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}

/*#region Sloupec s obrázkem - skryté info */
.wysiwyg-hidden-info-1 a {
    color: var(--g-color-1)!important;
}

.wysiwyg-hidden-info-1 h2 {
    font-weight: 500;
}

.wysiwyg-hidden-info-1 button .tech_param_hidden_info_1_text {
    color: var(--g-color-1);
    text-transform: capitalize;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_vypclan {
    border-top: 2px solid rgba(128,128,128,0.3);
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_information-wrapper {
    justify-content: start;
    padding-top: 1rem;
    height: 100%;
}


.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_img {
    max-height: 300px;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_img img{
    width: 100%!important;
    object-fit: contain;
    height: auto!important;
}

.CSS1Compat .wysiwyg-hidden-info-1 .tech_param_hidden_info_1_desc-read-more,
.CSS2Compat .wysiwyg-hidden-info-1 .tech_param_hidden_info_1_desc-read-more,
.CSS3Compat .wysiwyg-hidden-info-1 .tech_param_hidden_info_1_desc-read-more {
    max-height: 1000px;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_desc {
    margin-bottom: 0;
    padding-bottom: 12px;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_desc-read-more {
    transition: max-height 1s cubic-bezier(0.46, 0.03, 0.52, 0.96);
    overflow: hidden;
    max-height: 0;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_desc-read-more--open {
    max-height: 1000px;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_button-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
}

.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: 165px;
    height: 42px;
    line-height: 43px;
    padding: 0;
    border: none;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5:before,
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: var(--g-color-1);
    transition: all 0.3s ease;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5:before {
    height: 50%;
    width: 2px;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5:after {
    width: 20%;
    height: 2px;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5:hover:before {
    height: 100%;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5:hover:after {
    width: 100%;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span:before,
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: var(--g-color-1);
    transition: all 0.3s ease;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span:before {
    width: 2px;
    height: 50%;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span:after {
    width: 20%;
    height: 2px;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span:hover:before {
    height: 100%;
}
.wysiwyg-hidden-info-1 .tech_param_hidden_info_1_btn-5 span:hover:after {
    width: 100%;
}

/*#region Accordion předefinování bootstrap stylu */
.accordion .card-header {
    padding: 0;
}
.accordion .btn-custom-accordion {
    color: var(--g-color-1);
    font-weight: 500;
    font-size: 1rem;
    padding: .75rem 1.25rem;
    width: 100%;
    height: 100%;
    text-align: left;
}

.accordion .btn-custom-accordion:focus {
    box-shadow: none;
}
/*#endregion Accordion - předefinování bootstrap stylu */

/*#region Tabs - předefinování bootstrap stylu */

.wysiwyg-tabs .btn-custom-nav-tabs {
    color: var(--g-color-1);
    font-weight: 500;
    font-size: 1rem;
}

.wysiwyg-tabs.tab-content {
    padding-left: 1rem;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding-top: 1rem;
    border-top: 0;
}

.wysiwyg-tabs .btn-custom-nav-tabs.active {
    color: var(--g-color-1);
}
.wysiwyg-tabs .btn-custom-nav-tabs:hover {
    text-decoration: underline;
}

/*#endregion Tabs předefinování bootstrap stylu */


/* Override bootstrap coolaps, aby lidé mohli editovat ve wysiwygu text pro accordion a tabs */
.CSS1Compat .collapse:not(.show),
.CSS2Compat .collapse:not(.show),
.CSS3Compat .collapse:not(.show){
    display: block !important;
}


/* Override bootstrap tabs, aby lidé mohli editovat ve wysiwygu text ve všech tabs */
.CSS1Compat .wysiwyg-tabs.tab-content>.tab-pane,
.CSS2Compat .wysiwyg-tabs.tab-content>.tab-pane,
.CSS3Compat .wysiwyg-tabs.tab-content>.tab-pane {
    visibility: visible ;
    height: auto ;
    overflow: visible ;
    display: block ;
    opacity: 1 ;
}


/*#endregion*/

/*#region šablona Tabulka tech.parametrů */
.tech_param_group {
    border-top: 1px solid #dedede;
    display: block;
    padding: 15px 0;
}

.tech_param_header{
    color: var(--g-color-1);
    font-weight: bold;
}
/*#endregion*/

/*#region hlavní vzhled formulářů*/
/*
    Nachází se v
    - formular.php
    - heslo.php
    - vytvoreni_uzivatele2.php
    - staticky-formular.blade.php
    - login.blade.php
 */

.custom_form {
    flex: 2;
    margin-bottom: 50px;
}

.custom_form h1 {
    color: #e50071;
    font-size: 3em;
    margin: 30px auto;
}

.custom_form .flex_row {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    margin: 6px 0;
    position: relative;
}

.custom_form .form_item {
    flex: 1;
    width: 100%;
}

.custom_form form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.custom_form input {
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: var(--g-btn-radius);
    font-size: 15px;
    color: #888;
    font-weight: normal;
    flex: 1;
    display: inline;
}

.custom_form select {
    display: inline;
    color: #888;
    font-weight: normal;
}

.custom_form.form_horizontal input {
    width: calc(100% - 20px);
}

.custom_form.form_vertical input,
.custom_form.form_vertical textarea,
.custom_form.form_vertical select {
    width: 70%;
}

.custom_form textarea {
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: var(--g-btn-radius);
    font-size: 15px;
    color: #888;
    font-weight: normal;
    flex: 1;
    display: inline;
    resize: vertical;
    vertical-align: top;
}

.custom_form.form_horizontal textarea {
    width: calc(100% - 20px);
}

.custom_form input[type='checkbox'],
.custom_form input[type='radio'] {
    cursor: pointer;
}

.custom_form input[type='submit'] {
    background-color: var(--g-color-black);
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    width: 100%;
    transition: background-color 0.27s;
}

.custom_form input[type='submit']:hover {
    background-color: red;
}

.custom_form input[type=submit]:disabled {
    background: lightgray !important;
    pointer-events: none;
    cursor: progress;
    border: 1px solid white;
}

.custom_form label {
    margin-top: 4px;
    font-weight: bold;
    vertical-align: top;
    margin-bottom: 2px;
}

.custom_form.form_horizontal label {
    display: block;
    text-align: left;
    padding-right: 0;
    width: 100%;
}

.custom_form.form_vertical label {
    display: inline-block;
    text-align: right;
    padding-right: 15px;
    width: 20%;
}

.custom_form.form_horizontal input.control_text {
    width: 50%;
}

.custom_form.form_vertical input.control_text {
    width: 40%;
}

.custom_form.form_horizontal input.control_agreement,
.custom_form.form_vertical input.control_agreement {
    width: 15px;
    margin-right: 10px;
}

.custom_form label.control_agreement {
    display: inline-block;
    text-align: left;
    margin-top: 15px;
}

.custom_form.form_horizontal label.control_agreement {
    width: calc(100% - 20px);
}

.custom_form.form_vertical label.control_agreement {
    width: 60%;
}

.custom_form .subject {
    padding: 7px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: var(--g-btn-radius);
    margin: 10px 0;
    color: var(--g-color-black);
    font-size: 15px;
    font-weight: bold;
    width: 100%;
    flex: 1;
}

.custom_form.form_vertical label.request_field_message {
    width: 75%;
    text-align: left;
}

.custom_form .request_field_message span {
    color: red;
    margin-right: 10px;
}

.custom_form .form_item span {
    color: red;
    padding-left: 6px;
}

.custom_form .btn_submit {
    text-align: center;
}

.custom_form .btn_submit .select-tlacitko {
    margin-top: 20px;
    max-width: 300px;
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--g-btn-radius);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #e40d14;
    text-decoration: underline;
    margin-left: 4px;
}

.custom_form .btn_submit .select-tlacitko:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.custom_form .divider {
    border-bottom: 1px solid red;
    padding-top: 60px;
    padding-bottom: 10px;
}

.custom_form .separator {
    margin: 20px;
}

.custom_form.form_servis label {
    text-align: left;
    width: 45%;
}

.custom_form.form_servis .check-box-radio-container {
    display: inline-block;
    width: 50%;
    padding-left: 20px;
}

.custom_form.form_servis .check-box-radio-container label {
    cursor: pointer;
}

.custom_form.form_servis .separator {
    border-bottom: 1px solid lightgrey;
    margin: 20px 40px 20px 0;
}

.custom_form.form_servis.form_vertical input,
.custom_form.form_servis.form_vertical textarea {
    width: 50%;
}

.custom_form.form_servis input.control_text {
    width: 40%;
}

@media (max-width: 767px) {
    .custom_form.form_vertical label,
    .custom_form.form_horizontal label {
        display: block;
        text-align: left;
        padding-right: 0;
        width: 100%;
    }

    .custom_form.form_vertical input,
    .custom_form.form_horizontal input,
    .custom_form.form_vertical textarea,
    .custom_form.form_horizontal textarea,
    .custom_form.form_vertical select,
    .custom_form.form_horizontal select {
        width: calc(100% - 20px);
    }

    .custom_form.form_vertical label.control_agreement,
    .custom_form.form_horizontal label.control_agreement {
        width: calc(100% - 20px);
        display: inline-block;
    }

    .custom_form.form_vertical input.control_text,
    .custom_form.form_horizontal input.control_text {
        width: 50%;
    }

    .custom_form.form_vertical label.request_field_message,
    .custom_form.form_horizontal label.request_field_message {
        width: 100%;
        text-align: left;
    }

    .custom_form.form_servis.form_vertical input,
    .custom_form.form_servis.form_horizontal input,
    .custom_form.form_servis.form_vertical textarea,
    .custom_form.form_servis.form_horizontal textarea {
        width: 90%;
    }
}

/*#endregion*/

/*#region hlavni vzhled kosiku kosmain*/
/*
    Nachází se v
    - heslo.php
    - update_uzivatele.php
    - vytvoreni_uzivatele.php
    - vytvoreni_uzivatele2.php
    - login.blade.php
 */
#kosmain {
    margin-top: 20px;
    margin-bottom: 100px;
}

#kosmain fieldset,
.user-section-form fieldset {
    border: 1px solid #b7b7b7;
    background: #ffffff;
    padding: 10px;
    margin: 0 0 10px 0;
}

#kosmain legend,
.user-section-form legend {
    display: block;
    font-size: 120%;
    padding: 0 10px 0 10px;
    width: unset;
    max-width: unset;
}

#kosmain .custom_form.form_vertical label,
.user-section-form .custom_form.form_vertical label {
    text-align: left;
    padding-left: 15px;
}

#kosmain .send-password-label,
.user-section-form .send-password-label {
    color: var(--g-color-black);
    font-weight: 500;
}

#kosmain .custom_form label ,
.user-section-form .custom_form label {
    font-weight: 500;
}

#kosmain .select-tlacitko ,
.user-section-form .select-tlacitko {
    width: 70%;
}

#kosmain .separator ,
.user-section-form .separator {
    margin-top: 20px;
}

#kosmain .new-user-link ,
.user-section-form .new-user-link {
    background-color: var(--g-color-1);
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    transition: background-color 0.27s;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: var(--g-btn-radius);
    font-size: 15px;
    width: 70%;
    display: inline-block;
    text-align: center;
}

#kosmain .new-user-link:hover ,
.user-section-form .new-user-link:hover {
    background-color: var(--g-color-1-hover);
}

#kosmain .custom_form input[type='submit']:hover ,
.user-section-form .custom_form input[type='submit']:hover {
    background-color: var(--g-color-1-hover);
    text-decoration: underline;
}

#kosmain .msg_head ,
.user-section-form .msg_head {
    cursor: help;
    font-weight: bold;
}

#kosmain .kosredp ,
.user-section-form .kosredp {
    text-align: right;
    color: var(--g-color-2);
}

@media (max-width: 767px) {
    #kosmain .custom_form.form_vertical label ,
    .user-section-form .custom_form.form_vertical label {
        padding-left: 0;
    }

    #kosmain .custom_form.form_vertical input,
    .user-section-form .custom_form.form_horizontal input {
        width: 100%;
    }
}

#kosmain [type=button]:not(:disabled),
#kosmain [type=reset]:not(:disabled),
#kosmain [type=submit]:not(:disabled),
#kosmain button:not(:disabled),
.user-section-form [type=button]:not(:disabled),
.user-section-form [type=reset]:not(:disabled),
.user-section-form [type=submit]:not(:disabled),
.user-section-form button:not(:disabled) {
    background-color: var(--g-color-1);
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    transition: background-color 0.27s;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: var(--g-btn-radius);
    font-size: 15px;
}

#kosmain [type=button]:not(:disabled):hover,
#kosmain [type=reset]:not(:disabled):hover,
#kosmain [type=submit]:not(:disabled):hover,
#kosmain button:not(:disabled):hover,
.user-section-form [type=button]:not(:disabled):hover,
.user-section-form [type=reset]:not(:disabled):hover,
.user-section-form [type=submit]:not(:disabled):hover,
.user-section-form button:not(:disabled):hover {
    text-decoration: underline;
}

@media (max-width: 575px) {
    #kosmain .inline-submit-form .inline-submit-btn,
    .user-section-form .inline-submit-form .inline-submit-btn {
        display: block;
        text-align: left;
        width: 100%;
        margin-top: 10px;
    }
}

#kosmain table.kosregtab input,
.user-section-form table.kosregtab input {
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: var(--g-btn-radius);
    font-size: 15px;
    color: #888;
    font-weight: normal;
    width: 90%;
}

#kosmain table.kosregtab span,
.user-section-form table.kosregtab span {
    color: red;
}

#kosmain table.kosregtab tr td:first-child,
.user-section-form table.kosregtab tr td:first-child {
    width: 250px;
}

#kosmain table.kosregtab tr td:nth-child(1),
#kosmain table.kosregtab tr td:nth-child(3),
.user-section-form table.kosregtab tr td:nth-child(1),
.user-section-form table.kosregtab tr td:nth-child(3) {
    line-height: 1;
    margin-top: 12px;
}

#kosmain table.kosregtab select,
.user-section-form table.kosregtab select {
    padding: 6px 12px;
    border-radius: var(--g-btn-radius);
    color: #888;
    border: 1px solid #ddd;
}

#kosmain table.kosregtab .kosregtab-captcha input,
.user-section-form table.kosregtab .kosregtab-captcha input {
    width: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#kosmain table.kosregtab .kosregtab-captcha .captcha_container,
.user-section-form table.kosregtab .kosregtab-captcha .captcha_container {
    border: 1px solid #dddddd;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: none;
    background-color: #f5f5f5;
}

@media (max-width: 767px) {
    #kosmain table.kosregtab,
    #kosmain table.kosregtab tbody,
    #kosmain table.kosregtab tr,
    #kosmain table.kosregtab td,
    .user-section-form table.kosregtab,
    .user-section-form table.kosregtab tbody,
    .user-section-form table.kosregtab tr,
    .user-section-form table.kosregtab td {
        display: block;
        width: 100%;
    }

    #kosmain table.kosregtab input,
    .user-section-form table.kosregtab input {
        width: 100%;
    }
}
/*#endregion*/

/*#region hlavní vzhled košíku kosmain-wide*/
/*
    Nachází se v
    - kosik.php
    - vytvoreni-uzivatele2.php
    - wishlist-master.blade.php
 */
#kosmain-wide {
    padding: 0 0 50px 0;
}

#kosmain-wide .kostab {
    background: #ffffff;
    margin-bottom: 10px;
    margin-top: 10px;
}

#kosmain-wide table.kosregtab input {
    width: 70%;
}

#kosmain-wide table.kostab input[type="text"],
#kosmain-wide a.button,
#kosmain-wide input[type="submit"],
#kosmain-wide input[type="button"],
#kosmain-wide table.kosregtab input,
#kosmain-wide table.kosregtab select,
#kosmain-wide div.koscelkem input {
    font-size: 13px;
}

#kosmain-wide .kosnaviin,
#kosmain-wide .kosnaviin-on,
#kosmain-wide .lastkosnaviin {
    font-size: 20px !important;
    font-weight: normal;
    background: none;
    padding: 0;
    color: #5d5d5d;
    text-transform: uppercase;
}

#kosmain-wide .kostabtr1 {
    background: #ffffff;
    color: var(--g-color-black);
}

#kosmain-wide .kostabtr2,
#kosmain-wide .kostabtr3 {
    transition: all 250ms;
    background: #ffffff;
    font-size: 1rem;
}

#kosmain-wide .kostabtr2 a,
#kosmain-wide .kostabtr3 a {
    color: var(--g-color-black);
}

#kosmain-wide .kostabtr2:hover,
#kosmain-wide tr.kostabtr3:hover,
#kosmain-wide table.kosregtab tr:hover {
    background: #ffffff;
}

#kosmain-wide .kostabtr1 td {
    white-space: nowrap;
}

#kosmain-wide .kos-tab-tr {
    border-top: 1px solid #ededed;
}

#kosmain-wide .kos-tab-tr:hover {
    background: #efefef;
}

#kosmain-wide .kos-tab-tr .tdimg {
    padding: 10px;
    width: 120px;
    height: 120px;
    transition: 0.3s all ease-in-out;
}

#kosmain-wide .kos-tab-tr .tdimg .bg-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/*#kosmain-wide .kos-tab-tr:hover .tdimg {*/
/*    padding: 2px;*/
/*}*/

#kosmain-wide .kos-tab-tr .td-title {
    padding-left: 20px;
    padding-right: 20px;
}

#kosmain-wide .kos-tab-tr .td-title a {
    color: var(--g-color-black);
}

#kosmain-wide .kos-tab-tr .td-qty input {
    width: 50px;
    padding: 5px 10px;
    background: #FFFFFF;
    text-align: center;
    border: 1px solid #b7b7b7;
    color: #5d5d5d;
}

#kosmain-wide .kostabtr1 td {
    padding: 10px !important;
    font-weight: normal;
    text-transform: uppercase;
}

#kosmain-wide .kostabtr3 td {
    border-top: 1px solid #ededed;
}

#kosmain-wide .kostabimg {
    width: 80px !important;
}

#kosmain-wide table .kostab input[type="text"] {
    width: 20px;
    padding: 5px 10px;
    background: #FFFFFF;
    text-align: center;
    color: #5d5d5d;
    border: 1px solid #b7b7b7;
}

#kosmain-wide .kostab .fa {
    font-size: 30px;
}

#kosmain-wide td:first-child {
    width: 250px !important;
}

#kosmain-wide table.kosregtab input,
#kosmain-wide table.kosregtab select {
    padding: 5px 10px;
}

#kosmain-wide div.koscelkem input {
    padding: 5px 10px;
}

#kosmain-wide div.koscelkem,
#kosmain-wide div.koscenacelkem {
    font-size: 15px;
}

#kosmain-wide input[type="submit"].kostl2,
#kosmain-wide a.button.kostl2 {
    font-size: 15px !important;
    padding: 10px;
    background: var(--g-color-1);
    color: white;
    text-transform: uppercase;
}

#kosmain-wide div.kosinfo h2 {
    color: var(--g-color-black);
}

#kosmain-wide .kosudaje {
    padding-top: 10px;
}

#kosmain-wide .kosinfo.kosudaje {
    font-size: 1rem;
    line-height: 32px;
}

#kosmain-wide div.kosinfo_dopzdarma {
    text-align: right;
    color: #f45f05;
    font-size: 13px;
}

#kosmain-wide div.kosdoprava {
    font-size: 13px;
}

#kosmain-wide .kosvyber {
    font-size: 20px;
    font-weight: bold;
}

#kosmain-wide div.koscelkem {
    background: none;
    padding: 10px 0;
    font-size: 1rem;
}

#kosmain-wide div.koscenacelkem {
    margin: 20px 0 20px auto;
    font-size: 18px;
    text-align: right;
    padding-right: 2rem;
}

#kosmain-wide div.boxinline {
    vertical-align: top;
}

#kosmain-wide span.disabled {
    color: #BBBBBB;
}

#kosmain-wide .kosinput {
    padding: 15px;
    border-top: 3px solid #ffffff;
    background: #ededed;
}

#kosmain-wide .kosblock {
    padding: 15px;
    border-top: 3px solid #ffffff;
    background: #ededed;
    display: block;
}

#kosmain-wide .kosblock:hover {
    background: var(--g-color-4);
    color: #fff;
}

#kosmain-wide .kosoutput {
    padding: 15px;
    border-top: 3px solid #ffffff;
    background: #ededed;
}

#kosmain-wide .kosoutput p {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

#kosmain-wide div.kospoznamka {
    padding: 0;
}

#kosmain-wide div.kospoznamka textarea {
    width: 100%;
}

#kosmain-wide div.kosactive {
    /*border-top: 3px solid #5d5d5d;*/
}

#kosmain-wide .butsteps {
    padding: 15px 0;
    clear: both;
}

#kosmain-wide .butsteps .butleft,
#kosmain-wide .butsteps .butright {
    transition: 550ms;
    display: inline-block;
}

#kosmain-wide .butsteps .butleft:hover,
#kosmain-wide .butsteps .butright:hover {
    filter: brightness(1.25);
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

#kosmain-wide .butsteps .butleft {
    float: left;
    font-size: 15px;
    padding: 10px;
    background: var(--g-color-3);
    color: white;
}

#kosmain-wide .butsteps .butright {
    float: right;
}

#kosmain-wide div.kosobjcelkem {
    text-align: right;
    width: auto;
    margin: 15px 0 15px auto;
    padding: 20px 0;
    border-top: 1px solid #ededed;
    color: var(--g-color-black);
    font-size: 22px;
}

#kosmain-wide .clear {
    clear: both;
}

@media (max-width: 480px) {
    #kosmain-wide div.kospoukaz {
        width: 100%;
    }

    #kosmain-wide div.kosobjcelkem {
        text-align: right;
        width: auto;
        font-size: 18px;
        line-height: 20px;
    }

    #kosmain-wide div.kosobjcelkem strong {
        white-space: nowrap;
    }

    #kosmain-wide input[type="submit"].kostl2,
    #kosmain-wide a.button.kostl2,
    #kosmain-wide a.button {
        display: inline-block;
    }

    #kosmain-wide .kostabtr1 td:nth-child(3),
    #kosmain-wide .kostabtr2 td:nth-child(3),
    #kosmain-wide .kostabtr3 td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 360px) {
    #kosmain-wide div.boxinline {
        width: 100%;
    }
}

#kosmain-wide .kospocet {
    text-align: right;
    margin-bottom: 15px;
    float: right;
}

#kosmain-wide .kospocet.kospoukaz {
    font-size: 12px;
    background: none;
    text-align: left;
    float: left;
    margin-top: 50px;
    width: 100%;
}

#kosmain-wide .kospocet input[type="text"],
#kosmain-wide .kospocet input[type="password"],
#kosmain-wide .kospocet input[type="file"],
#kosmain-wide .kospocet select,
#kosmain-wide .kospocet textarea {
    font-size: 12px;
    color: #5d5d5d;
    background: #ffffff;
    border: 1px solid #b7b7b7;
    padding: 5px;
    margin-left: 10px;
    line-height: 24px;
}

#kosmain-wide .kospocet input[type="submit"],
#kosmain-wide .kospocet input[type="button"] {
    color: white;
    background: var(--g-color-black);
    border: 0;
    padding: 5px 8px;
    cursor: pointer;
    transition: all 550ms;
    line-height: 26px;
}

#kosmain-wide .kospocet input[type="submit"]:hover,
#kosmain-wide .kospocet input[type="button"]:hover {
    background: #b1b1b1;
    color: var(--g-color-black);
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}


#kosmain-wide .kosik-navigace-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 30px;
    border-bottom: 3px solid #5d5d5d;
}

#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper,
#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on {
    display: flex;
    align-items: center;
}

#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-number,
#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-number {
    font-size: 20px;
    text-align: center;
    width: 39px;
    height: 39px;
    line-height: 35px;
    border: 2px solid #b7b7b7;
    font-weight: 400;
    color: #9c9c9c;
}

#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-text,
#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-text {
    font-size: 20px;
    margin-left: 10px;
    text-transform: uppercase;
    text-align: center;
}

#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-sipka,
#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-sipka {
    font-size: 17px;
    margin-left: 20px;
}

#kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-number {
    background: #5d5d5d;
    border: 2px solid #5d5d5d;
    color: #FFFFFF;
}

@media (max-width: 1299px) {
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-text,
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-text {
        font-size: 16px;
        margin-left: 7px;
    }

    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-sipka,
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-sipka {
        font-size: 15px;
        margin-left: 10px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper,
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on {
        flex-direction: column;
    }

    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-sipka,
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-sipka {
        display: none;
    }

    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper .kosik-navigace-text,
    #kosmain-wide .kosik-navigace-wrapper .kosik-navigace-item-wrapper-on .kosik-navigace-text {
        margin: 5px 5px 0;
    }
}
/*#endregion*/


/*#region tipsy je JS generovany*/
.tipsy {
    padding: 5px;
    font-size: 12px;
    opacity: 0.8;
    filter: alpha(opacity=80);
    background-repeat: no-repeat;
    background-image: url(/images/tipsy.gif?fc8034c66691dfad7ec700e3d51f0325);
}

.tipsy.tipsy-north {
    background-position: top center;
}

.tipsy.tipsy-south {
    background-position: bottom center;
}

.tipsy.tipsy-east {
    background-position: right center;
}

.tipsy.tipsy-west {
    background-position: left center;
}

.tipsy .tipsy-inner {
    padding: 5px 8px 4px 8px;
    background-color: var(--g-color-black);
    color: white;
    max-width: 200px;
    text-align: center;
    -moz-border-radius: var(--g-btn-radius);
    -webkit-border-radius: var(--g-btn-radius);
}
/*#endregion*/

/* To top */

.ui-to-top.mdi-arrow-up::before{
    content: url('/_data/styly/img/svg/mdi-arrow-up.svg');
    width: 100%;
    height: 100%;
    transform: scale(1.5);
}

.ui-to-top {
    position: fixed;
    overflow: hidden;
    z-index: 100;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    color: #fff;
    background: var(--g-color-1);
    text-align: center;
    text-decoration: none;
    transition: .32s all ease-in-out;
    transform: translate3d(0, 100px, 0);
    outline: 1px solid #fff;
    border-radius: var(--g-btn-radius);
}
.ui-to-top:hover {
    color: #fff;
    background: var(--g-color-1-hover);
    border-radius: 50%;
}
.ui-to-top {
    right: 16px;
    bottom: 40px;
}
.ui-to-top.active {
    transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 720px) {
    .ui-to-top, #aside-banner-secondary {
        display: none;
    }
}


/*#region Header Social Links*/

.header-social-links-container {
    text-align: right;
    margin-top: -18px;
    z-index: 1008;
    position: absolute;
    right: 15px;
}

#breadcrumbs-sticky-wrapper.is-sticky ~ .container .header-social-links-container {
    z-index: 9;
}

.header-social-links-container a {
    background: var(--g-color-1);
    border-radius: 50%;
    width: 31px;
    height: 31px;
    display: inline-flex;
    margin: 0 8px;
}
.header-social-links-container a:last-child {
    margin-right: 0
}

/*#endregion Header Social Links*/

/*#region Plugin Sticky*/
@media(min-width: 992px){
    #breadcrumbs-sticky-wrapper.sticky-wrapper.is-sticky {
        z-index: 1008;
        position: relative;
    }
    #header-menu-template-1-sticky-wrapper.sticky-wrapper.is-sticky {
        z-index: 1009;
        position: relative;
    }
}
/*#endregion Plugin jquery.sticky.js*/

/*#region Downloads */

.global-list-to-download-title {
    display: none;
}

.global-list-to-download-desc {
    display: none;
}

.global-list-to-download {
    padding-left: 30px;
}

.global-list-to-download-item {
    margin-left: 32px;
}

.global-list-to-download span {
    position: relative;
}

.global-list-to-download a {
    position: relative;
    line-height: 3.0;
    color: var(--g-color-black);
    text-decoration: none;
}

.global-list-to-download a:after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    top: calc(50% - 18px);
    left: -60px;
    background:  url('/_data/styly/img/svg/ke-stazeni-white.svg');
    background-color: var(--g-color-1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    border-radius: 50%;
}

.global-list-to-download span:not(.text-decoration-none):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: black
}

/*#endregion Downloads */

/*region Btn effects */
/*https://codepen.io/anon/embed/emgQKJ?height=500&theme-id=1&slug-hash=emgQKJ&default-tab=result#result-box*/
.btn-effect-5 {
    color: var(--g-color-1);
    border: 1px solid transparent;
    box-shadow: inset 0 0 20px rgb(255 255 255 / 0%);
    outline: 1px solid;
    outline-color: rgba(var(--g-color-1), 0.5);
    outline-offset: 0;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-effect-5:hover {
    border: 1px solid var(--g-color-1);
    box-shadow: inset 0 0 20px rgba(var(--g-color-1), 0.5), 0 0 20px rgba(var(--g-color-1), 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px var(--g-color-1-dark);
    color: var(--g-color-1);
    text-decoration: none;
}
/*endregion Btn effects */

/*#region PPL pro košík */
.ppl-parcelshop-map{
    height: 100% !important
}
/*#endregion PPL */

/*#region Globální vzhled pro primary tlačítko */
a.btn, .btn-primary {
    background-color: var(--g-color-1);
    border-color: var(--g-color-1);
    color: #fff;
    transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out,box-shadow .3s ease-in-out
}
.btn-primary.focus, .btn-primary:focus, .btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
    background-color: var(--g-color-1-hover);
    border-color:var(--g-color-1);
    color: var(--g-color-1);
}

.btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgb(8 8 8 / 50%);
}
/*#endregion*/
