* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

a {
    text-decoration: none;
}

:root {
    --black: #182538;
    --divider: rgba(0, 0, 0, 0.16);
    --white: #FFFFFF;
    --gray: #595959;
    --gray2: #858585;
    --gray3: #FAF9F9;
    --disabled: rgba(0, 0, 0, 0.3);
    --primary: #E20513;
    --green: #00C851;
}

body, html {
    font-size: 16px;
    font-weight: 500;
}

main {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 24px 60px 112px 60px;
}

h1 {
    /*název stránky*/
    font-family: Rajdhani;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;


    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--gray);

}

h2 {
    /*podkategorie*/
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray);

    border-bottom: 1px solid var(--divider);
    padding-bottom: 12px;
    margin-bottom: 10px;
    margin-top: 30px;

    width: 100%;
}

h3 {
    /*názvy produktů*/
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: var(--gray);
}

label {
    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: var(--gray2);

    
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 7px;

    user-select: none;
}

button {
    
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    
    border-radius: 6px;
    height: 48px;
    background-color: var(--primary);
    outline: none;
    border: none;
    color: var(--white);
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    cursor: pointer;

    padding-top: 12px;
    padding-bottom: 12px;
}

button:disabled {
    background-color: var(--disabled);
}

button:hover {
    background-color: #CA0917;
}

button:active{
    background-color: #B20D1C;
}

button.secondary {
    border: 1px solid var(--divider);
    color: var(--gray);

    background-color: transparent;
}

button.secondary:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
}

button.secondary:active {
    border: 1px solid var(--primary);
    color: var(--primary);

    background-color: var(--gray3);
}

button.secondary:disabled {
    color: var(--divider);
}

input, select {
    border: 1px solid var(--divider);
    padding: 13px 15px;
    border-radius: 6px;

    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;

    letter-spacing: 0.3px;

    cursor: pointer;
    position: relative;

    height: 48px;
    color: var(--gray);

    width: 100%;
}

select {
    background: transparent url("/assets/dropdown-icon.svg") no-repeat;
    background-position: 97% center;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

input:focus, select:focus {
    outline-color: var(--primary);
    outline-width: 2px;
}

input.radio {
    width: 20px;
    height: 20px;
    color: var(--gray);
}

div.checkbox {
    min-width: 18px;
    min-height: 18px;

    max-width: 18px;
    max-height: 18px;

    border: 1.5px solid var(--disabled);
    border-radius: 2px;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

div.checkbox.active {
    min-width: 18px;
    min-height: 18px;

    max-width: 18px;
    max-height: 18px;

    border-radius: 2px;
    border: none;

    background-color: var(--primary);

    cursor: pointer;
}

div.checkbox.active > img {
    display: flex;
}

.content {
    margin-top: 28px;
    width: 100%;
    max-width: 1320px;
}

.row-container {
    display: flex;
    margin: 0px;
    flex-wrap: wrap;
    flex-direction: row;
}

.column-container {
    display: flex;
    margin: 0px;
    flex-direction: column;
}

a.style-reset {
    user-select: none;
    text-decoration: none;
    color: unset;
}


@media only screen and (max-width: 1024px) {
    .row-container:not(.keep-row-on-phone) {
        flex-direction: column;
        width: 100%;
    }

    .row-container.reverse-on-phone:not(.keep-row-on-phone) {
        flex-direction: column-reverse;
        width: 100%;
    }

    main {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 32px;
    }

    .content {
        margin-top: 12px;
    }

    .hide-on-phone {
        display: none !important;
    }
}

@media only screen and (min-width: 1025px) {

    .hide-on-desktop {
        display: none !important;
    }

}

input.is-readonly {
    background-color: #f2f2f2;
    color: #777;
    cursor: not-allowed;
}

input.is-readonly:focus {
    outline: none;
    box-shadow: none;
}




.sugar {
    /*  cukřík na debugování 
    pokud vám zvolené barvy připomínají složenku, 
    jedná se o běžný vedlejší efekt tohoto doplňku, 
    přesto doporučujeme zachovat zvýšenou pozornost 
    při hledání layout chyby. */

    background: rgb(255,255,255) !important;
    background: radial-gradient(circle, rgba(255,255,255,1) 20%, rgb(255, 240, 243) 100%) !important; 
    outline: solid 2px rgb(255, 189, 202) !important;
}
