/* CSS Document */
@charset "UTF-8";
    
#sp-top-bar {
	background-color: rgba(51, 71, 86, 1); /* Dark blue-gray */
	color: #f0f0f0; /* Light font color for contrast */
	position: relative;
	top: 0;
	z-index: 9998;
	padding: 10px 0;
	font-size: 1rem !important;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 1.5;
}

#sp-top-bar a {
	color: #f0f0f0; /* Ensure links are visible */
	text-decoration: none;
}

#sp-top-bar a:hover {
	color: #F47126; /* Accent color on hover */
	text-decoration: underline;
}

#sp-top-bar .sp-module {
	display: inline-block;
	margin-left: 1.25rem;
	vertical-align: middle;
}

@media (max-width: 768px) {
	#sp-top-bar {
		font-size: 0.95rem;
		text-align: center;
	}
	#sp-top-bar .sp-module {
		display: block;
		margin: 5px auto;
	}
}


#sp-header,
#sp-header .logo {
	height: 65px;
	position: relative;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
	z-index: 9996;
}

#sp-header.header-sticky {
	position: fixed;
	z-index: 9997;
}

#offcanvas-toggler {
	height: 65px;
	line-height: 65px;
}

/* off-canvas extra settings START */

#offcanvas-toggler {
  display: inline-flex;
  align-items: center;
  height: $header_height;
  line-height: $header_height;
  font-size: 20px;
  > span {
    &:hover {
      color: #fff;
    }
  }
}

.offcanvas-init {
  overflow-x: hidden;
  position: relative;
}

.offcanvas-active {
  .offcanvas-overlay {
    visibility: visible;
    opacity: 1;
  }
}

.offcanvas-overlay {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.body-wrapper {
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  backface-visibility: hidden;
}

.close-offcanvas {
  position: absolute;
  top: 25px;
  z-index: 1;
}

.offcanvas-menu {
  width: $offcanvas_width;
  height: 100%;
  position: fixed;
  top: 60px;
  overflow: inherit;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 10000;

  #offcanvas-toggler {
    display: none !important;
  }
  .offcanvas-inner {
    padding: 25px;
    .header-modules {
      margin-left: 0px;
    }
    .finder {
      margin-bottom: 10px;
    }
    .sp-sign-in {
      position: relative;
      top: 10px;
      .signin-text {
        display: none !important;
      }
    }
    .sp-profile-wrapper {
      .user-text {
        display: none !important;
      }
    }
    .sp-contact-info,
    .social-icons {
      font-size: 14px;
      > li > a {
        opacity: 0.7;
        &:hover,
        &:focus {
          opacity: 1;
        }
      }
    }
    .sp-contact-info {
      margin-top:20px;
      > li:not(:last-child) {
        margin-bottom: 10px;
      }
    }
    .sp-module {
      padding: 0;
      margin: 0;
      &:not(:last-child) {
        margin-right: 20px;
      }

      .sp-module-title {
        font-size: 1.5rem;
        font-weight: bold;
      }

      &:not(:last-child) {
        margin-bottom: 20px;
      }
      //search width
      .awesomplete {
        width: 210px;
      }
    }
    ul.menu {
      &,
      ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        margin: 0;
        margin: 0 0 15px 0;
        list-style: none;
      }
      > li {
        border: 0;
        padding: 0;
        margin: 0;
        position: relative;
        overflow: hidden;
        display: block;
        font-weight: 600;
        > a,
        > span {
          display: block;
          font-size: 18px;
          padding: 10px 0px;
          position: relative;
          line-height: 18px;
          opacity: 0.7;
          transition: 0.3s;
          &:hover {
            opacity: 1;
          }
        }

        ul.menu-child {
          display: none;
        }

        &.menu-parent {
          > a,
          > .menu-separator {
            > .menu-toggler {
              display: block;
              position: absolute;
              top: 50%;
              cursor: pointer;
              transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              &:after {
                font-family: "Font Awesome 5 Free";
                content: "\f105";
                font-weight: 900;
              }
            }
          }

          & li.menu-parent {
            > a {
              position: relative;
              display: block;
            }

            .menu-toggler {
              right: 0px;
              display: block;
              position: absolute;
              top: 50%;
              cursor: pointer;
              transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              &:after {
                font-family: "Font Awesome 5 Free";
                content: "\f105";
                font-weight: 900;
              }
            }
            &.menu-parent-open {
              .menu-toggler {
                &:after {
                  content: "\f107";
                }
              }
            }
          }

          &.menu-parent-open {
            > a,
            > .menu-separator {
              > .menu-toggler {
                &:after {
                  font-family: "Font Awesome 5 Free";
                  content: "\f107";
                  font-weight: 900;
                }
              }
            }
            > .nav-header {
              > .menu-toggler {
                &:after {
                  font-family: "Font Awesome 5 Free";
                  content: "\f107";
                  font-weight: 900;
                }
              }
            }
          }
          > .nav-header {
            > .menu-toggler {
              display: block;
              position: absolute;
              top: 50%;
              cursor: pointer;
              transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              &:after {
                font-family: "Font Awesome 5 Free";
                content: "\f105";
                font-weight: 900;
              }
            }
          }
        }

        > ul {
          display: none;
          li {
            a {
              font-size: 15px;
              padding: 4px 0px;
              line-height: 18px;
              font-weight: 400;
            }
          }
        }
      }
    }
  }
  // border-menu
  &.border-menu {
    .offcanvas-inner ul.menu {
      > li {
        border-bottom: 1px solid rgba(32, 31, 31, 0.1);
        margin-bottom: 0;
        > a {
          padding: 15px 10px;
        }
      }
      ul {
        padding-bottom: 15px;
      }
    }
  }
  // center alignment
  &.center-alignment {
    .offcanvas-inner {
      padding: 0px 15px;
    }
  }
}

body {
  &.ltr {
    #offcanvas-toggler {
      &.offcanvas-toggler-right {
        float: right;
        margin-left: 20px;
      }

      &.offcanvas-toggler-left {
        float: left;
        margin-right: 20px;
      }
    }

    &.offcanvs-position-left {
      .body-wrapper {
        left: 0;
      }

      .offcanvas-menu {
        left: -$offcanvas_width;
        top: 0;
      }

      &.offcanvas-active {
        .offcanvas-menu {
          left: 0;
          top: 0;
        }
      }
    }

    &.offcanvs-position-right {
      .body-wrapper {
        right: 0;
      }

      .offcanvas-menu {
        right: -$offcanvas_width;
        top: 0;
      }

      &.offcanvas-active {
        .offcanvas-menu {
          right: 0;
          top: 0;
        }
      }
    }

    .close-offcanvas {
      right: 15px;
    }

    .offcanvas-menu {
      .offcanvas-inner {
        ul.menu {
          > li {
            &.menu-parent {
              > a,
              > .menu-separator {
                > .menu-toggler {
                  right: 0;
                }
              }
              > .nav-header {
                > .menu-toggler {
                  right: 0;
                }
              }
            }

            ul {
              margin-left: 10px;
            }
          }
        }
      }
    }
  }
}
/* off-canvas extra settings END */

.sp-megamenu-parent>li>a,
.sp-megamenu-parent>li>span {
	line-height: 65px;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
	line-height: 25px;
}

.sp-scroll-up {
	display: none;
	position: fixed;
	bottom: 80px;
	right: 10px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background: #334756;
	border-radius: 3px;
	z-index: 1000;
}

.sp-scroll-up:hover,
.sp-scroll-up:active,
.sp-scroll-up:focus {
	color: #fff;
	background: #f47126;
}

table.inmenu-table {
	font-size: 12px;
	font-family: 'Roboto', Open Sans;
	color: #333;
	background-color: #f6f6f6;
	box-shadow: 1px 1px 8px 1px;
	border: 1px solid #333;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.inmenu-table td {
	/* padding: 4px; */
	margin: 3px;
	border: 1px solid #333;
}

.inmenu-table th {
	margin: 3px;
	border: 1px solid #333;
	/* background-color: #93816c; */
	color: #FFF;
	font-weight: bold;
}

.ui-datepicker-calendar {
	display: none;
}

/* Main container style for the box module */
.box-module {
    height: 150px; /* Specific height for the box */
    display: flex;
    flex-direction: column;
    border: 1px solid #334756; /* Stylish border color */
    text-align: center;
    margin-bottom: 20px; /* Adds spacing between each module if stacked */
    justify-content: space-between;
    background-color: #f6f6f6; /* Ensures the background is white */
    border-radius: 8px; /* Rounded corners for a modern look */
}

/* Styles for the content within the box */
.box-module .box-content {
    padding: 10px; /* Adequate padding around the content */
}

/* Text styling within the box */
.box-module .custom-text {
    font-family: 'Roboto', sans-serif; /* Clean, modern sans-serif font */
    font-size: 12pt; /* Readable text size */
    margin: 10px 0; /* Vertical spacing for better text separation */
}

/* Container for buttons or actions in the box */
.box-module .button-container {
    margin-top: auto; /* Pushes the container to the bottom of the flex container */
    padding-bottom: 10px; /* Extra padding at the bottom */
}

/* Styling for Module -Ασφάλεια- in bottom1 position */
.footer-security {
  font-family: 'Roboto', sans-serif;
  text-align: left;
  border-left: 1px solid #F47126;
  border-right: 1px solid #F47126;
  padding: 0 15px;
  margin: 0 20px;
}
.footer-security-item {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}
.footer-security-item i {
  width: 24px;
  color: #bbb;
  margin-right: 8px;
  flex-shrink: 0;
}
.footer-security img {
  transition: all 0.3s ease;
  max-width: 100px;
  margin-top: 10px;
}
.footer-security img:hover {
  opacity: 1;
  transform: scale(1.10);
}
.footer-image-full img {
  display: block;
  width: 100%;
  height: auto;
  margin: 10px auto 0 auto; /* centers the image horizontally */
  padding: 0;
  max-width: 100%;
}
@media (max-width: 991px) {
  .footer-security {
    border-left: none;
    border-right: none;
    margin: 0;
    padding: 0;
  }
  .footer-image-full {
    display: none;
}


/* Styling for Μενού Πληρωμές */
  .secure-payment-info {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.8;
  }

  .secure-payment-info strong {
    color: #d32f2f;
  }

  .secure-payment-info ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .secure-payment-info ul ul {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 6px;
  }

/* Styling for H1, H2 and H3 */

/* Separator style */
.separator {
  width: 100%;
  height: 2px;
  background-color: #e0e0e0; /* Light gray line */
  margin: 20px 0; /* Adds space around the line */
}

/* Icon styling for H3 */
h3 i {
  margin-right: 10px; /* Space between icon and text */
  color: #0073e6; /* Color to match the theme of the website */
}

/* Optional - make H1, H2, H3 visually distinct */
h1, h2, h3 {
  font-weight: bold;
  color: #333;
  margin-bottom: 15px; /* Adds space below headings */
}

/* Center DJ MegaMenu */
/* Directly target this instance of DJ-MegaMenu */
.dj-megamenu-wrapper {
  display: flex !important;
  justify-content: center !important;
}

#dj-megamenu297 {
  display: inline-flex !important;
  justify-content: center !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

/* Optional: spacing between menu items */
#dj-megamenu297 > li {
  margin: 0 10px !important;
}









