﻿body {
    background-image: url(../imgs/greekbackground-min.png);
    background-size: contain;
    padding: 0;
    height: 100%;
}

#container {
    min-height: 100%;
    position: relative;
}

#header {
    padding: 10px;
}

#body {
    padding: 10px;
    padding-bottom: 60px; /* Height of the footer */
}

#footer {
    /*position: absolute;*/
    bottom: auto;
    top: auto;
    width: 100%;
    height: 100px; /* Height of the footer */
}

.sidenav {
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 200px;
    bottom: 90px;
    right: 10px;
    overflow-x: hidden;
    padding: 8px 10px;
}

    .sidenav a {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 20px;
        color: #90CB8D;
    }

        .sidenav a:hover {
            color: #064579;
        }


    .sidenav .icon {
        display: none;
    }

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 17px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        float: none;
        color: none;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

.sidenav a:hover, .dropdown:hover .dropbtn {
    background-color: white;
    color: green;
}

.dropdown-content a:hover {
    background-color: white;
    color: lightgrey;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
    .sidenav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }

    .sidenav a.icon {
        float: none;
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
        }

    .sidenav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .sidenav.responsive .dropdown {
        float: none;
    }

    .sidenav.responsive .dropdown-content {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 50%;
        text-align: left;
    }
}

.sidebar.hide {
    left: -295px;
}

.footerlinks {
    color: azure;
    text-decoration: none !important;
}

    .footerlinks:hover {
        color: #ffd800;
    }

.navbar {
    background-color: #a4cc3c;
}

.bg-img {
    /* The image used */
    min-height: 380px;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    opacity: 0.5;
}

/* Add styles to the form container */
.container {
    /*position: absolute;
    right: 0;
    margin: 20px;
    max-width: 300px;
    padding: 16px;
    background-color: white;*/
}

/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    /*margin: 5px 0 22px 0;
    border: none;*/
    background: #f1f1f1;
}

    input[type=text]:focus, input[type=password]:focus {
        background-color: #ddd;
        outline: none;
    }

/* Set a style for the submit button */
.btn {
    background-color: #a4cc3c;
    color: white;
    padding: 7px 20px;
    border: none;
    cursor: pointer;
    /*width: 100%;*/
    opacity: 0.9;
}

    .btn:hover {
        opacity: 1;
        background-color: #cce49c;
    }

.footerlinks {
    color: #ffffff;
    text-decoration: none !important;
}

    .footerlinks:hover {
        color: #ffd800;
    }

#footer1 {
    background: #beda79;
    position: center;
    padding: 10px 0;
    color: #fff;
}

#footer2 {
    background: #a4cc3c;
    position: center;
    padding: 10px 0;
    color: #fff;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#container {
    min-height: 100%;
    position: relative;
}

#header {
    padding: 10px;
}

#body {
    padding: 10px;
    padding-bottom: 60px; /* Height of the footer */
    min-height: 80vh;
}

#footer {
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    height: 60px; /* Height of the footer */
}
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

    /* Full-width input fields */
    .form-container input[type=text], .form-container input[type=password] {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
    }

        /* When the inputs get focus, do something */
        .form-container input[type=text]:focus, .form-container input[type=password]:focus {
            background-color: #ddd;
            outline: none;
        }

    /* Set a style for the submit/login button */
    .form-container .btn {
        background-color: #a4cc3c;
        color: white;
        padding: 16px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    /* Add a red background color to the cancel button */
    .form-container .cancel {
        background-color: red;
    }

    /* Add some hover effects to buttons */
    .form-container .btn:hover, .open-button:hover {
        opacity: 1;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #90CB8D;
}

input:focus + .slider {
    box-shadow: 0 0 1px #90CB8D;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.zoom {
    padding-bottom: 0;
    transition: transform .2s; /* Animation */
    margin: 0 auto;
}

    .zoom:hover {
        transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

.auto-style1 {
    position: relative;
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    left: 0px;
    top: 0px;
}

a.Q {
    float: right;
}

.nav-item a {
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
}
.nav-item.lang a.dropdown-toggle {
    color: #163E60;
    padding: 0;
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
}
.nav-tabs .nav-item a, .nav-tabs .nav-item button {
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    margin: 0 5px 0 0;
    background-color: #E8E8EF;
    color: inherit !important;
    font-weight: bold;
    color: #173F61 !important;
}
    .nav-item a.dropdown-item {
        color: rgb(22, 62, 96) !important;
    }
.nav-item::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background: #163E60;
    transition: 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: #fff !important;
}

.nav-link {
    padding: 15px 5px;
    transition: 0.3s;
}

    .nav-link:hover {
        text-decoration: none;
    }

.dropdown-item.active, .dropdown-item:active {
    color: #212529;
}
/*
.dropdown-item:focus, .dropdown-item:hover {
    background: #fec400;
}*/
.nav-item.active a {
    color: #163E60;
    font-weight: bold;
}

.nav-item:hover a {
    color: #163E60 !important;
}

header {
    margin-bottom: 40px;
}

.successMessage {
    color: #769E0E;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 10px;
    float: left;
}

.marginTop20 {
    margin-top: 20px;
}
.marginTop10 {
    margin-top: 10px;
}
.searchBox {
    padding-top: 45px;
}

.searchContainer {
    border-top: 2px solid #A4CC3C;
    padding-bottom: 45px;
    border-bottom: 2px solid #A4CC3C;
}

.commonQuestions {
    margin-top: 12px;
    background-color: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
}

    .commonQuestions h3 {
        text-align: center;
        padding: 12px;
        background-color: #163E60;
        margin-top: 0px;
        color: white;
        margin-bottom: 20px;
    }
    .commonQuestions .nav-item {
        margin-right: 5px;
    }
        .commonQuestions .nav-item .nav-link {
            padding: 5px 10px;
        }
    .commonQuestions .tab-content {
        background-color: #fff;
        margin-bottom: 20px;
    }
.navbar .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1);
    background-color: #163E60;
}
    .navbar .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

h1 {
    border-bottom: 2px solid #163e60;
    padding-bottom: 15px;
    margin-bottom: 30px !important;
}

.searchContainer h1 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px !important;
    text-align: center;
    font-size: 32px;
}

h3 {
    border-left: 2px solid #a7ce39;
    padding-left: 13px;
}

.FAQ h3 {
    background: #f5f5f5;
    padding: 10px;
}

.FAQ p {
    padding: 10px 15px;
}

.title {
    background: url(../imgs/title-line.png) no-repeat left bottom;
    border: navajowhite;
    padding-bottom: 20px;
    margin-bottom: 35px !important;
    font-size: 27px;
}






div.callout {
    /*height: 60px;*/
    width: 296px; /*
    float: left;*/
    background-color: #fff8e0;
    /*! background-image: -moz-linear-gradient(top, #444, #444); */
    position: relative;
    color: #3D3D3D;
    padding: 50px 30px;
    border-radius: 3px;
    box-shadow: 0px 0px 20px #D1D1D1;
    margin: 0;
    min-height: 50px;
    border: 1px solid #ACACAC;
    /*! text-shadow: 0 0 1px #000; */
    /*box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;*/
    top: -4%;
    left: -3%;
    border-radius: 50%;
    text-align: center;
}

    div.callout a {
        color: #006bc3;
    }

.callout::before {
    content: "";
    width: 0px;
    height: 0px;
    border: 0.8em solid transparent;
    position: absolute;
}

.callout.right::before {
    left: -22px;
    top: 44%;
    border-right: 10px solid #717171;
}

.LogAcc .nav-link.NavBtn {
    background-color: #163E60;
    padding: 6px 10px;
    margin-top: 5px;
    border: 2px solid #A4CC3C;
}
.LogAcc .nav-link.NavBtn.active {
    border-color: #fff;
}

    .LogAcc .nav-link.NavBtn .nav-link {
        padding: 6px 10px;
    }

.navSrch {
    border: 1px solid rgba(0,0,0,0.2);
    padding: 8px;
    background-color: gold;
}

    .navSrch a {
        color: #0056b3;
        text-decoration: underline;
        margin-top: 3px;
        float: left;
        margin-left: 10px;
        font-size: 16px;
    }

    .navSrch i {
        color: #163E60;
        float: left;
    }

.card {
    margin-bottom: 40px;
}

.mrgn30 {
    margin: 30px 0;
}

.HomeQA {
    /*border-bottom: 1px solid #eee;*/
    margin: 20px 0;
}

    .HomeQA i, .FAQ i, .fa-circle-question {
        color: #a7ce39;
    }

    .HomeQA p {
        margin-left: 36px;
        color: #000;/*
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;*/
    }
    .HomeQA p span {
        /*border-bottom: 1px solid #eee;
        padding-bottom: 15px;*/
        display: block;
    }
        .HomeQA p span:last-child {
            border-bottom: none;
            margin-top: 10px;
        }

.card a {
    color: #0056b3 !important;
    text-decoration: underline;
}

.login i {
    color: #07567E;
}

.login h3 {
    border: none;
}

.card.credential {
    background-color: #FFFFE0;
    margin-top: 15px;
    min-height: 45vh;
}

    .card.credential hr {
        border-color: #DADADA;
    }

.StaticContent img {
    width: 210px;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.card a.btn {
    color: #fff !important;
    text-decoration: none !important;
    padding: 5px 10px;
}

.AltTemp {
    background-color: #f1f1f1;
    padding: 30px 0;
    margin: 30px -18px;
}

label {
    font-weight: bold;
}

h1 label {
    font-weight: normal;
}

.nav-tabs .nav-item {
    margin-bottom: -4px;
}

.tab-content {
    border: 1px solid #eee;
    padding: 20px;
}

.btn-gray {
    background-color: gray;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
}

ul.pagination {
    margin-top: 20px;
    line-height: 32px;
}
    ul.pagination .Prev {
        margin-right: 10px;
    }
    ul.pagination .Next {
        margin-left: 10px;
    }
ul.pagination a {
    text-decoration: none;
}

ul.pagination .active a {
    color: #fff !important;
}

.page-item .page-link.active {
    background-color: #163E60;
    border-color: #163E60;
    color: #fff !important;
}
.Questions label{
    margin-bottom: 3px;
}
.btn-navy {
    background-color: #163E60;
    margin-bottom: 5px;
}
.navbar-brand {
    font-size: 16px;
}
    .navbar-brand b, .navbar-brand span, .navbar-brand img {
        float: left;
    }
    .navbar-brand span {
        margin-left: 15px;
        margin-top: 15px;
    }
    .card {
        min-height: 70vh;
    }
.navbar-nav .nav-item .nav-link.active {
    background-color: rgba(255,255,255, .5) !important;
    border-bottom: 2px solid rgb(22, 62, 96) !important;
    color: rgb(22, 62, 96) !important;
}
.navbar-nav.main li.nav-item:last-child {
    border-left: 1px solid #fff !important;
    margin-left: 13px;
    padding-left: 13px;
}
.LightGreen {
    color: #a7ce39;
}
.QList {
    padding-left: 15px;
}
.mrgnBtm20 {
    margin-bottom: 20px !important;
}
.DarkOgange {
    color: darkorange;
}
.red {
    color: darkorange;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}
.hidden {
    display:none;
}
.SocialIcons {
    margin-top: 5px;
}
.SocialIcons a {
    margin-left: 10px;
}
.checkbox label {
    font-weight: normal !important;
}
.demmed {
    color: gray !important;
}
.navbar-brand label {
    margin-top: 11px;
    margin-left: 7px;
}
h4.Question {
    background-color: #eee;
    padding: 5px 10px 10px;
    border-left: 2px solid #a7ce39;
}
.like {
    margin-top: 10px;
}
.btn i {
    color: #fff;
}
.paddingLft15 {
    padding-left: 15px;
}
.paddingLft18 {
    padding-left: 18px;
}
a.dimmed {
    color: gray !important;
}
table, td {
    border-color: #dedede !important;
}
th {
    color: #fff;
    background-color: #163E60;
}
a.fa-solid.fa-thumbs-up {
    text-decoration: none;
    color: #a7ce39 !important;
}
a.fa-solid.fa-thumbs-up.dimmed {
    color: gray !important;
}
.HomeHelpDiv {
    position: relative;
    text-align: center;
    left: -8%;
}