﻿/* Εδώ κάνω overide το bootstrap.css (για να μην το αλλάξω απευθείας, γιατί έτσι χάνω το που έκανα αλλαγές*/


/* Parallax*/
html, body {
    height: 100%; /* necessary */
}

.parallax-bgimg-full, .parallax-bgimg-half {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* First image (Logo. Full height) */
.parallax-bgimg-full {
    min-height: 100%;
}
/* Second image (Portfolio) */
.parallax-bgimg-half {
    min-height: 400px;
}

/* Body ---------------------------------------------- */
body {
    color: silver;
    background-color: black;
    font-family: sans-serif;
    letter-spacing: 1.2px;
}

h1, h2, h3, h4, h5, h6 {
    color: #e6d3b5;
    font-family: sans-serif;
    letter-spacing: 3px;
}

.centeredTitle {
    text-align: center;
}

/* Menu --------------------------------------------*/
.navbar-inverse {
    background-color: transparent;
    border-color: transparent;
}

    .navbar-inverse .navbar-brand {
        color: #0094ff; /*το άλλαξα*/
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #d0cfcf; /*Menu color*/
        font-family: sans-serif;
        font-size: 15px;
        letter-spacing: 3px;
        padding-left: 20px;
        padding-right: 20px;
    }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > a:focus {
            color: #d6e0ea;
        }

        .navbar-inverse .navbar-nav > li > a:before {
            content: "";
            position: absolute;
            width: 60%;
            height: 1px;
            bottom: 5px;
            left: 20%;
            background-color: #d6e0ea;
            visibility: hidden;
            -webkit-transform: scaleX(0);
            -moz-transform: scaleX(0);
            -o-transform: scaleX(0);
            -ms-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar-inverse .navbar-nav > li > a:hover:before {
            visibility: visible;
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -o-transform: scaleX(1);
            transform: scaleX(1);
        }


/* Welcome --------------------------------------------------*/
.welcome1 {
    position: absolute;
    width: 580px;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -120px;
}

.welcome2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: 65px;
    transform: translate(-50%,-50%);
    font-size: 17px;
    color: #d0cfcf;
    font-family: 'Lucida Calligraphy';
    letter-spacing: 2px;
}

.welcome3 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 95px;
    margin-left: -8px;
    transform: translate(-50%,-50%);
    font-size: 13px;
    color: #d0cfcf;
    font-family: 'Lucida Calligraphy';
    letter-spacing: 2px;
}


/* Image μικρό zoom effect στο hover ---------------------------------*/
.grow-img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    overflow: hidden;
}

    .grow-img:hover {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        overflow: hidden;
    }

/* Image λίγο μεγαλύτερο zoom effect στο hover ---------------------------------*/
.grow-img25 {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    overflow: hidden;
}

    .grow-img25:hover {
        -moz-transform: scale(1.25);
        -o-transform: scale(1.25);
        -ms-transform: scale(1.25);
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        overflow: hidden;
    }


/* Image λίγο μεγαλύτερο zoom effect στο hover ---------------------------------*/
.grow-img40 {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    overflow: hidden;
}

    .grow-img40:hover {
        -moz-transform: scale(1.4);
        -o-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        overflow: hidden;
    }


/* Image μεγάλο zoom effect στο hover ---------------------------------*/
.extraGrow-img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    overflow: hidden;
}

    .extraGrow-img:hover {
        -moz-transform: scale(2.5);
        -o-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }


.rotatedVideo {
    transition: all 1s ease-in-out;
    transform: rotate(290deg);
}

/*Video Κατηγοριών -----------------------------------------*/
.half-video-container {
    position: absolute;
    top: 24%;
    bottom: 25%;
    width: 48%;
    height: 70%;
    overflow: hidden;
    border-width: 1pc;
    -moz-border-radius: 75px 75px 75px 75px;
    -webkit-border-radius: 75px 75px 75px 75px;
    border-radius: 75px 75px 75px 75px;
}

.half-Video {
    /* Make video to at least 100% wide and tall */
    min-width: 46%;
    min-height: 100%;
    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Transparent Input (Contact)*/
.transparentInput {
    background: transparent;
    color: white;
}


/* Product Title*/
.product-title {
    color: #d0cfcf;
    font-family: sans-serif;
    letter-spacing: 2px;
    font-size: 20px;
}

.product-subtitle {
    color: #e6d3b5;
    font-family: sans-serif;
    letter-spacing: 2px;
    font-size: 20px;
}

/*Φωτογραφίες Ειδών --------------------*/
.product-image {
    position: absolute;
    z-index: 1000;
    opacity: 2;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
    /*border: solid;
    border-width: 0.2px;
    -moz-border-radius: 15px 15px 15px 15px;
    -webkit-border-radius: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;*/
    background-color: black;
    width: 200px;
    z-index: 0;
}


/*μικρές Φωτογραφίες δίπλα από τα Είδη --------------------*/
.product-image-small {
    z-index: 1000;
    opacity: 2;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
    /*border: solid;
    border-width: 0.2px;
    -moz-border-radius: 15px 15px 15px 15px;
    -webkit-border-radius: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;*/
    background-color: transparent;
    width: 70px;
    z-index: 0;
    margin: 10px;
}


/* Fade In στις σελίδες*/
.fadeIn div {
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.product-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}


    .product-middle:hover {
        opacity: 0.9;
    }

.product-text {
    background-color: transparent;
    color: silver;
    font-size: 16px;
    padding: 16px 32px;
}



input, select, textarea {
    max-width: 900px;
}





.panel-footer {
    padding: 10px 15px;
    background-color: lightgray; /*το άλλαξα*/
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}



.selectedMenu {
    background-color: #1a1a1e;
    /*color: #0e0e0e;*/
}

.dropdown-menu {
    background-color: #1f88d9;
}

.breadcrumb {
    /*background-color: #0e0e0e;*/
    background-color: black;
    color: #e6d3b5;
}



.btn-default {
    background-color: transparent;
    border-color: #88aeca;
    color: silver;
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active,
    .btn-default.active,
    .open .dropdown-toggle.btn-default {
        color: silver;
        background-color: #2a346f;
        border-color: #0094ff;
    }

    .btn-default:focus {
        outline: none;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -1px;
        background-color: #1f88d9;
        color: silver;
    }

.btn-grid {
    background-color: transparent;
    border: none;
    padding: 2px 5px;
}

    .btn-grid:hover,
    .btn-grid:focus,
    .btn-grid:active,
    .btn-grid.active,
    .open .dropdown-toggle.btn-grid {
        color: #7c8cea;
        background-color: #03233b;
        border-color: #0094ff;
    }

.btn-dialog {
    width: 140px;
}

.full-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.full-imageOrVideo {
    /* Make video to at least 100% wide and tall */
    min-width: 105%;
    min-height: 110%;
    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.transparent {
    background: rgba(255,255,255,0.1);
}

table.dataTable tbody tr {
    color: silver;
    background-color: #0e0e0e;
}


/***loading screen***/
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 1500ms infinite linear;
            -moz-animation: spinner 1500ms infinite linear;
            -o-animation: spinner 1500ms infinite linear;
            animation: spinner 1500ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
            box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
        }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/***loading end****/
