@import '../icons/font/bootstrap-icons.css';

/* DARK MODE BUTTON */

.color-mode-btn {
    /* hide original checkbox */
    display: flex;
    height: 0px;
    width: 0px;
    visibility: hidden;
}

.color-mode-btn-label {
    /* button socket light mode */
    position: relative;
    width: 40px;
    height: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: inset 2px 2px 1px rgba(0, 0, 0, 0.1), inset -2px -2px 1px rgba(0, 0, 0, 0.1);
}

.color-mode-btn-label:after {
    /* button head light mode */

    /* size and placement */
    position: absolute;
    top: -1px;
    left: -1px;
    width: 22px;
    height: 22px;
    border-radius: 11px;

    /* button head styling */
    background: #6D6D6D;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25), inset -1px -1px 1px rgba(0, 0, 0, 0.25);
    transition: .5s;

    /* icon */
    font-family: "bootstrap-icons";
    font-size: 16px;
    color: #e5e5e5;
    content: "\F5A1";
    display: grid;
    place-content: center;
}

.color-mode-btn.checked+.color-mode-btn-label {
    /* button socket dark mode */
    background: #272c30;
}

.color-mode-btn.checked+.color-mode-btn-label:after {
    /* button head dark mode */
    left: 19px;
    color: #3b4045;
    content: "\F495";
}
/* HEADER */

.navbar-brand {
    min-width: 190px;
}

/* BANNER */

.banner-mobile {
    min-height: 220px;
    background-image: url('../img/banner-sm.webp');
    background-size: cover;
}

/* MAIN */
  
html,
body {
    /* Posune footer vždy do spodní strany obrazovky i když html nezabere celou výšku monitoru */
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;
    flex: 1;
}

@media only screen and (min-width: 992px) {
    .bg-transparent-lg {
        background-color: transparent !important;
    }
} 

/* Ceník nadpis */
@media only screen and (min-width: 768px) {
    .ps-md-cenik {
        padding-left: 28px !important;
    }
} 

	