/*
Blanka.css: Seting basic document typography
============================================
- document minimal paddings
- block elements with bottom margins only
- same left margins for ul/ol, dd, blockquote
*/

/*
Document minimal paddings
*/

body {
    padding: 1.5rem;
    background: url('../img/texture.png');
    background-repeat: repeat;
    font-family: 'Josefin Sans', sans-serif;
}

#topBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 22px;
    width: 50px;
    height: 50px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: none;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.4), 0 5px 10px rgba(0, 0, 0, 0.5);
}

a{
    text-decoration: none !important;
}

input.form-control.ovoce:focus{
    border-color: #ff6600;
}

input.form-control.zelenina:focus{
    border-color: #00cc00;
}

nav ul li {
    font-size: 1.2rem;
}

.navbar {
    padding-bottom: 1.5rem;
}

#brand-image{
    height: 75px
}

#td-logo{
    height: 75px
}

.bg-ovoce{
    background: linear-gradient(to right, #ffcc00, #ff6600) !important;
    color: white;
}

.bg-ovoce-linka{
    background-color: #ff6600 !important;
}

container.info{
    background-color: white !important;
}

.bg-zelenina{
    background: linear-gradient(to right, #99cc33, #00cc00) !important;
    color: white;
}

.bg-projekt{
    background: linear-gradient(to right, #ff3333, #cc0000) !important;
    color: white;
}

.bg-light{
    background-color: #ffffff !importatnt;
    color: black;
}

.bg-success{
    background-color: #00cc00 !important;
}

.bg-danger{
    background-color: #cc0000 !important;
}

.btn-danger{
    border-color: #cc0000 !important;
    background-color: #cc0000 !important;
}

.btn-danger:hover{
    background-color: #ff3333 !important;
    border-color: #ff3333 !important;
}

.btn-primary{
    border-color: #ff6600 !important;
    background-color: #ff6600 !important;
}

.btn-primary:hover{
    background-color: #ffcc00 !important;
    border-color: #ffcc00 !important;
}

.btn-success{
    border-color: #00cc00 !important;
    background-color: #00cc00 !important;
}

.btn-success:hover{
    background-color: #99cc33 !important;
    border-color: #99cc33 !important;
}

.btn-outline-primary{
    border-color: #ff6600 !important;
    color: #ff6600 !important;
}

.btn-outline-primary:hover{
    background: linear-gradient(to right, #ffcc00, #ff6600) !important;
    color: white !important;
}

.btn-outline-success{
    border-color: #00cc00 !important;
    color: #00cc00 !important;
}

.btn-outline-success:hover{
    background: linear-gradient(to right, #99cc33, #00cc00) !important;
    color: white !important;
}

.jumbotron {
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.4), 0 5px 10px rgba(0, 0, 0, 0.5);
}

.modal-content, .card-group, .btn {
    border-radius: 25px;
}

/*
Block elements with bottom margins only
---------------------------------------
*/

p, ul, ol, dl, table, blockquote, pre, figure, hr {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

ul ul, ul ol, ol ul, ol ol {
    margin-bottom: 0;
}

/*
Same left margins for ul/ol, dd, blockquote
-------------------------------------------
*/

ul, ol, dd {
    padding-left: 1.75rem;
}

dd {
    margin-left: 0;
}

/*
Blockquote
----------
*/

blockquote {
    border: 0;
    padding-left: 1.75rem;
    margin-left: 0;
    font-style: italic;
}

/*
Figure/Figcaption
-----------------
*/

figure {
    margin-left: 0;
    margin-right: 0;
}

figure>table, figure>img, figure>picture {
    margin-bottom: 0;
}

/*
Etc.
----
*/

fieldset {
    border: 0;
}

legend {
    padding: 0 .5rem;
}

hr {
    border-style: solid;
    opacity: .25;
}