@charset "utf-8";
/* CSS Document */

html, body {
    background: #054a71;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px
}

#topBar {
    font-family: 'Blinker', sans-serif;
    width: 100%;
    font-size: 20px;
    background: rgb(1,28,42); /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAxMWMyYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwNDQzNjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(1,28,42,1) 0%, rgba(4,67,102,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(1,28,42,1)), color-stop(100%,rgba(4,67,102,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(1,28,42,1) 0%,rgba(4,67,102,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(1,28,42,1) 0%,rgba(4,67,102,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(1,28,42,1) 0%,rgba(4,67,102,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(1,28,42,1) 0%,rgba(4,67,102,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#011c2a', endColorstr='#044366',GradientType=0 ); /* IE6-8 */
}

img {
    border: 0;
}
.headerAdmin {
    color: #FFF;
    font-family: Verdana;
    font-size: 18px;
    line-height: 86px;
    text-align: right;
}
.headerPage {
    font-size: 24px;
    margin-bottom: 16px;
}
.mediumHeader {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
}
.buttonLink {
    padding: 5px 10px 5px 10px;
    color: #FFF;
    margin: 0px 0px 0px 0px;
    border: 1px solid #003340;
    width: 168px;
    height: 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    background: #0083A6; /* Old browsers */
    
    transition: all 300ms;
    -moz-transition: all 300ms; /* Firefox 4 */
    -webkit-transition: all 300ms; /* Safari and Chrome */
    -o-transition: all 300ms; /* Opera */
}
.buttonLink:hover {
    background: #00475A; /* Old browsers */
}


#banner {
    background-image: url(images/bg-banner.png);
    background-repeat: repeat-x;
    width: 100%;
    background-color: #d8d8d8;
}

#main {
    background: #FFF;
    width: 100%;
    height: auto;
    border-bottom: 4px solid #D9D9D9;
    border-top: 4px solid #D9D9D9;
    padding: 8px 0 8px 0;
    font-family: Verdana;
    font-size: 14px;
    text-align: left;
}

#footer {
    background: #054A71;
    width: 100%;
    height: auto;
    position: relative;
    min-height: 100px;
    height: auto;
    font-family: 'Blinker', sans-serif;
    margin: 0 auto;
    background: url(images/map.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 20px;
}
#footer .ozgadaniel {
    margin-top: 15px;
    color: #D9D9D9;
    font-size: 14px;
}
#footer .ozgadaniel a {
    color: #ffa170;
    text-decoration: underline;
}
#footer .ozgadaniel a:hover {
    color: #fff;
    text-decoration: underline;
}

input.text-input, input[type=text], input[type=password] {
    height: 25px; 
    max-height: 25px;
    border: 1px solid #054a71; 
    border-radius: 0; 
    padding-left: 4px; 
    color: #666; 
    width: 250px;
    max-width: 250px;
    font-family: century-gothic, sans-serif;
    outline: none;
    font-size: 14px;
}
input.submit_btn {
    padding: 5px 10px 5px 10px;
    background: #18b3d8;
    color: #FFF;
    margin: 10px 0px 10px 0px;
    border: 0;
    outline: 0;
    width: 168px;
    height: 30px;
    font-size: 16px;
    float: left;
    
    transition: all 300ms;
    -moz-transition: all 300ms; /* Firefox 4 */
    -webkit-transition: all 300ms; /* Safari and Chrome */
    -o-transition: all 300ms; /* Opera */
}
input.submit_btn:hover {
    background: #007793;
    color: #FFF;
    cursor: pointer;
}
select.chooseWO {
    height: 25px; 
    max-height: 25px;
    border: 1px solid #054a71; 
    border-radius: 0; 
    padding-left: 4px; 
    color: #666; 
    width: 250px;
    max-width: 250px;
    font-family: century-gothic, sans-serif;
    outline: none;
    font-size: 14px;
}
textarea.choose {
    height: 120px; 
    max-height: 120px;
    min-height: 120px;
    width: 450px;
    border: 1px solid #054a71; 
    border-radius: 0; 
    padding-left: 4px; 
    color: #666;
    max-width: 450px;
    font-family: century-gothic, sans-serif;
    outline: none;
    font-size: 12px;
}
input[type=text].disabled {
    background: #666;
    color: #FFF;
}


.menuTop {
    width: 501px;
    height: 87px;
    text-align: right;
    float: left;
}
.menuTop ul {
    list-style-type: none;
    width: auto;
    min-height: 20px;
    float: left;
    color: #FFF;
    font-family: Verdana;
    padding: 0;
    margin-top: 30px;
    float: right;
}
.menuTop ul li {
    float: left;
}
.menuTop ul li a {
    display: block;
    width: auto;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    float: left;
    padding: 5px 15px 5px 15px;

    transition: all 300ms;
    -moz-transition: all 300ms; /* Firefox 4 */
    -webkit-transition: all 300ms; /* Safari and Chrome */
    -o-transition: all 300ms; /* Opera */
}
.menuTop ul a:hover {
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    background: #18b3d8;
}

#main .allOffers {
    margin-bottom: 20px;
    margin-top: 5px;
}
#main .allOffers .product {
    border: 3px solid #ffa170;
    height: 100%;
    padding: 0;
    background: rgba(4,48,87,0.55);
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}
#main .allOffers .product:nth-child(3n+3) {
    margin-right: 0;
}
#main .allOffers .product img {
    width: 100%;
    height: 180px;
    border: 0;
    margin: 0; 
}
#main .allOffers .product .info {
    display: block;
    width: 100%;
    color: #FFF;
    padding: 8px;
}
#main .allOffers .product:hover {
    background: rgba(4,48,87,0.95);
    color: #FFF;
}
#main .allOffers .product .info p.name {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center;
    font-weight: 600;
}
#main .allOffers .product .info p.price {
    font-size: 16px;
    color: #ffa170;
    margin-top: 0;
    left: 8px;
}
#main .allOffers .product .info p.show {
    position: absolute;
    font-size: 16px;
    color: #FFF;
    text-decoration: none;
    margin-top: 0;
    right: 8px;

    transition: all 300ms;
    -moz-transition: all 300ms; /* Firefox 4 */
    -webkit-transition: all 300ms; /* Safari and Chrome */
    -o-transition: all 300ms; /* Opera */
}
#main .allOffers .product .info p:hover {
    text-decoration: none;
}
#main .allOffers .product:hover .info p.show {
    color: #ffa170;
    text-decoration: underline;
}
#main .buttonOferta {
    display: inline-block;
    text-align: center;
    color: #054A71;
    font-size: 28px;
    margin: 0;
}
#main img.thumb {
    float: left;
    margin-top: 10px;
    margin-right: 15px;
}
#main p.headerOffer {
    text-align: left;
    color: #054A71;
    font-size: 28px;
    margin: 17px 0px 20px 0px;
}
#main div.imageOffer {
    min-height: 50px;
    height: auto;
    float: left;
}
#main div.imageOffer img {
    width: 100%;
    height: auto;
    border: 4px solid #D9D9D9;
    border-radius: 4px;
}
#main p.priceOffer {
    text-align: left;
    color: #054A71;
    display: inline-block;
    font-size: 20px;
    margin: 10px 5px 0 10px;
}
#main p.dateOffer {
    text-align: left;
    color: #666;
    display: inline-block;
    font-size: 10px;
    margin: 10px 10px 0 10px;
}
#main p.txtOffer {
    text-align: left;
    color: #054A71;
    display: inline-block;
    font-size: 20px;
    margin: 25px 10px 0 10px;
}
#main p.descOffer {
    text-align: left;
    color: #000;
    font-size: 16px;
    display: inline-block;
    margin: 10px 10px 10px 10px;
    line-height: 22px;
}

/*******************************************************************/
/******************** RESPONSIVE WEBPAGE UPDATE ********************/
/*******************************************************************/

/*// Small devices (landscape phones, 576px and up)*/
/*@media (min-width: 576px) { ... }*/

/*// Medium devices (tablets, 768px and up)*/
/*@media (min-width: 768px) { ... }*/

/*// Large devices (desktops, 992px and up)*/
/*@media (min-width: 992px) { ... }*/

/*// Extra large devices (large desktops, 1200px and up)*/
/*@media (min-width: 1200px) { ... }*/

.navbar-dark .navbar-nav .nav-link {
    color: #22bee4;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #e35b15;
}

#topBar nav.navbar-expand-lg {
    margin: 12px 0;
}

#bannerContainer {
    display: inline-block;
}
#slider-exchange {
    text-align: center;
}

.banner-button {
    font-size: 24px;
    background: #e5e5e5;
    color: #212121;
    font-weight: 500;
    padding: 4px 30px 6px 30px;
    border: 2px solid #a8a8a8;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    display: inline-block;
    margin: 0;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.4);
}
.banner-button:hover,
.banner-button:focus {
    text-decoration: none;
    color: #ffa170;
}

@media (max-width: 991px) {
    #topBar nav.navbar-expand-lg {
        margin: 16px 0;
    }

    #topBar .navbar-nav {
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    #topBar .navbar-nav button {
        float: right;
    }

    .header-logo {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .carousel-item img {
        border: 0;
        width: 100%;
        height: 383px;
    }
    .banner-button {
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    #topBar nav.navbar-expand-lg {
        background: rgba(1, 26, 40, 1);
        background: -moz-linear-gradient(top, rgba(1, 26, 40, 1) 0%, rgba(3, 43, 66, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(1, 26, 40, 1)), color-stop(100%, rgba(3, 43, 66, 1)));
        background: -webkit-linear-gradient(top, rgba(1, 26, 40, 1) 0%, rgba(3, 43, 66, 1) 100%);
        background: -o-linear-gradient(top, rgba(1, 26, 40, 1) 0%, rgba(3, 43, 66, 1) 100%);
        background: -ms-linear-gradient(top, rgba(1, 26, 40, 1) 0%, rgba(3, 43, 66, 1) 100%);
        background: linear-gradient(to bottom, rgba(1, 26, 40, 1) 0%, rgba(3, 43, 66, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#011a28', endColorstr='#032b42', GradientType=0);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        margin: 12px 0;
    }
}
