body {
    margin:0;
    padding:0px;
    line-height:160%;
    font-family:Verdana;
    font-size:15px;
    color:#3C3C3C;
    width:100%;
    overflow-y:scroll;
    box-sizing: border-box;
    line-height:130%;
    /*background-color:#fafafa;*/
    background-color:#fdfdfd;
    overflow-x:hidden;
}
div {
   -webkit-overflow-scrolling:touch;
   box-sizing: border-box; 
}
span {
   -webkit-overflow-scrolling:touch;
   box-sizing: border-box; 
}
img {
   box-sizing: border-box;
   vertical-align: middle;
}
h1{
    box-sizing: border-box;
    font-family:  Times;
}
a {
    box-sizing: border-box;
    display:inline-block;
    vertical-align:middle;
    text-decoration: none;
    vertical-align:middle;
    color:blue;
}
a:hover{
    color:black;
}
input {
    -webkit-appearance: none;
}
.homediv{
    --bg:#f7f9fc;
    --card:#ffffff;
    --text:#111826;
    --muted:#475569;
    --accent:#2563eb;
    --accent-2:#16a34a;
    --border:#e5e7eb;
    --ring:rgba(37,99,235,.25);
    --shadow: 0 10px 24px rgba(2,6,23,.08);
}
.homediv{
    max-width:1100px;
    margin:20px 0px 0px 0px;
    padding:0px 10px 0px 10px;
}
.homelink{
    font-family:Verdana!important;
    display:inline-block;
    font-weight:800;
    text-decoration:none;
    letter-spacing:.4px;
    padding:10px 16px;
    border-radius:12px;
    color:var(--text);
    outline: none;
    background:
    linear-gradient(120deg, rgba(106,166,255,.18), rgba(66,211,146,.18)) border-box,
    linear-gradient(var(--card), var(--card)) padding-box;
    border:1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    verical-align:middle;
    font-size:16px;
}
.homelink:hover, .homelink:focus-visible{
    transform: translateY(-1px);
    box-shadow: 0 8px 26px var(--ring);
    border-color: rgba(106,166,255,.45);
}
.homeunderlink{
    display:inline-block;
    font-family:Verdana!important;
    color:var(--muted);
    font-size:13px;
    font-weight:bold;
    margin-left:10px;
}
.homepage_main_nav{
    margin-top:24px;
}
.home_anchor_div{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0 6px;
}
.home_anchor_div a{
    font-family:Verdana!important;
    --chip-bg: color-mix(in srgb, var(--accent) 10%, transparent);
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    font-size:15px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid var(--border);
    background: var(--chip-bg);
    transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.home_anchor_div a:hover,
.home_anchor_div a:focus-visible{
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
    box-shadow: 0 6px 18px var(--ring);
}
.homepage_main_nav > ul{
    list-style:none;
    padding:0;
    margin:18px 0 0;
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:16px;
}
@media (max-width: 900px){
    .homepage_main_nav > ul{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
    .homepage_main_nav > ul{ grid-template-columns: 1fr; }
}
.home_catglink{
    position:relative;
    border:1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 60%), var(--card);
    border-radius:16px;
    padding:14px 14px 10px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.home_catglink:hover{
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
    box-shadow: 0 12px 28px var(--ring);
    transform: translateY(-2px);
}
.home_catglinkhead{
    font-family:Verdana!important;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    text-decoration:none;
    color:var(--text);
    font-weight:800;
    font-size:17px;
    padding:10px 12px;
    border-radius:12px;
    background: linear-gradient(120deg, rgba(106,166,255,.16), rgba(66,211,146,.14));
    border:1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.home_catglinkhead::after{
    content:"▾";
    font-size:14px;
    opacity:.8;
    transform: translateY(-1px);
}
.home_catglinkhead:hover,
.home_catglinkhead:focus-visible{
    outline:none;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--ring);
}
.home_catglinkunder{
    list-style:none;
    margin:10px 4px 2px;
    padding:6px;
    border-left: 2px solid color-mix(in srgb, var(--accent) 50%, var(--border));
    display:grid;
    grid-template-columns: 1fr;
    gap:6px;
    max-height: 280px;
    overflow:auto;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--accent) 55%, #7c7c7c) transparent;
}
.home_catglinkunder::-webkit-scrollbar{ height:10px; width:10px; }
.home_catglinkunder::-webkit-scrollbar-thumb{
    background: color-mix(in srgb, var(--accent) 55%, #7c7c7c);
    border-radius:10px;
}
.home_catglinkunder a{
    font-family:Verdana!important;
    font-size:15px;
    display:block;
    text-decoration:none;
    font-weight:600;
    color:var(--text);
    padding:8px 10px;
    border-radius:10px;
    transition: background .15s ease, transform .15s ease;
}
.home_catglinkunder a:hover,
.home_catglinkunder a:focus-visible{
    outline:none;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    transform: translateX(2px);
}
@media (max-width: 640px){
.home_catglink{ padding-bottom:8px; }
.home_catglinkunder{ display:none; }
.home_catglink:focus-within .home_catglinkunder,
.home_catglink:hover .home_catglinkunder{
    display:grid;
}
}
.homepage_main_nav a{ outline-offset: 3px; }
.homepage_main_nav a:focus-visible{
    box-shadow: 0 0 0 3px var(--ring);
    border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
}
.home_srch_breadcrumbs{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #475569;              /* muted */
    margin: 30px 0px 0px 0px;
}
.home_srch_breadcrumbs a{
    font-family:Verdana!important;
    font-size:13px;
    text-decoration: none;
    color: #2563eb;              /* accent */
    font-weight: 600;
    border-radius: 8px;
    padding: 2px 4px 2px 0px;
    outline: none;
    transition: background .15s ease, box-shadow .2s ease, color .15s ease;
}
.home_srch_breadcrumbs a:hover,
.home_srch_breadcrumbs a:focus-visible{
    background: rgba(37,99,235,.12);
    box-shadow: 0 0 0 3px rgba(37,99,235,.20);
}
.home_srch_breadcrumbs span{
    opacity: .6;
    user-select: none;
}
.maincath1{
    font-family:Verdana!important;
    margin: 6px 0 14px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #111826;
    letter-spacing: .2px;
}
.home_catgs_nav{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin: 12px 0 8px;
}
.home_catgs_nav > a{
    font-family:Verdana!important;
    font-size:15px;
    display: block;
    text-decoration: none;
    color: #111826;
    background:
        linear-gradient(180deg, rgba(2,6,23,.02), transparent 70%),
        #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    position: relative;
    outline: none;
    transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.home_catgs_nav > a:hover,
.home_catgs_nav > a:focus-visible{
    transform: translateY(-2px);
    border-color: #9ec0ff;
    box-shadow: 0 10px 24px rgba(37,99,235,.18);
}
.home_catgs_nav > a::after{
    content: "→";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    opacity: .22;
    transition: opacity .2s ease, transform .15s ease;
}
.home_catgs_nav > a:hover::after,
.home_catgs_nav > a:focus-visible::after{
    opacity: .55;
    transform: translate(2px, -50%);
}
@media (max-width: 520px){
  .home_catgs_nav{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .home_catgs_nav > a{
    padding: 10px 12px;
    border-radius: 12px;
  }
}
.titleh1{
    margin:0px;
    padding:0px;
    display:inline-block;
    vertical-align:top;
    font-family:verdana;
    font-size:14px;
    color:black;
    font-weight:bold;
    width:90%;
}
.logourl{
    color:#474747;
    font-family: Verdana, sans-serif!important;
    margin-bottom:0px;
}
.logourl a{
    font-family: Verdana, sans-serif!important;
    text-decoration: none;
    color: #111826;
    letter-spacing: .2px;
    white-space: nowrap;
}
.logo-grid-2{
    display:inline-block;
    line-height:100%;
    text-align:center;
    vertical-align:middle;
}
.logo-grid-2-head{
    display:inline-block;
    color: #111826;
    font-size:17.5px;
    font-weight:bold;
}
.logoexp{
    display:inline-block;
    line-height:100%;
    font-size:12px;
    vertical-align:middle;
    color:#858585!important;
    font-weight:normal;
    padding-top:2px;
}
.main{
    font-family: Verdana, sans-serif!important;
    width:100%;
    max-width:1920px;
    margin-left:auto;
    margin-right:auto;
    z-index:3;
    overflow-x:hidden;
}
.sectionform{
    line-height:130%;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    /*max-width:1920px;
    margin-left:auto;
    margin-right:auto;*/
    margin-top:0px;
    margin-bottom:0px;
    padding:10px 0px 10px 0px;
    z-index:29;
    background-color:#ffffff;
    border-style:none none solid none;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 6px 20px rgba(2,6,23,.06);
}
.searchform{
    display:block;
    box-sizing: border-box;
    width:100%;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:0px;
    padding:10px 10px 10px 10px;
}
.inputsearch {
    box-sizing: border-box;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
    color:#5d5d5d;
    padding:12px 12px 12px 14px;
    width:100%;
    max-width:700px;
    margin:10px 0px 0px 0px;
    background: url(site_pics/search_icon_w_v1.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 4px center;
    padding-left:30px;
    background-color:white;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font: 500 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: #111826;
    box-shadow: inset 0 0 0 0 transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
    border-color: #9ec0ff;
    box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}
.inputsearch::placeholder{ color: #77839a; }
.inputsearch:focus{
  outline: none;
}
#clone_results_section{
    padding:0px;
    margin:0px;
    z-index:1;
}
.main_results_section{
    text-align:center;
    margin:0px;
    z-index:3;
    padding:0px 0px 0px 0px;
}
.results_section{
    display:inline-block;
    width:100%;
    max-width:1100px;
    text-align:left;
}
.resultdiv{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(2,6,23,.03);
  transition: box-shadow .2s ease, border-color .15s ease, transform .12s ease;
  font-size: 14px;
  line-height: 1.4;
  color: #111826;
  max-width:700px;
}
.resultdiv:first-of-type{
  border-color: #9ec0ff;
  box-shadow: 0 14px 28px rgba(37,99,235,.14);
  position: relative;
}
.resultdiv:first-of-type::before{
  content: "Καλύτερη τιμή";
  position: absolute;
  top: -10px;
  right: 16px;
  background: #16a34a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(22,163,74,.22);
}
.resultdiv:hover{
  border-color: #9ec0ff;
  box-shadow: 0 14px 28px rgba(37,99,235,.14);
  transform: translateY(-2px);
}
.store_icon{
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(0);
  margin-right:7px;
}
.result_header{
   display: inline-block;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #111826;
  text-decoration: none;
  line-height: 1.2;
  margin-right: 8px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
  vertical-align:middle;
}
.address_section_2{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.2;
  vertical-align:middle;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
}
.map_icon{
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.address_section_2 span{
  cursor: pointer;
  color: #475569;
  font-weight: 600;
  text-decoration: underline;
  font-weight:normal;
  text-decoration:none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
}
.store_url{
  display: inline-block;
  font-size: 13.5px;
  line-height: 1.3;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
  word-break: break-all;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
}
.store_url:hover,
.store_url:focus-visible{
  text-decoration: underline;
  outline: none;
}
.resultdiv h2{
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 6px 0 0;
  color: #111826;
  word-break: break-word;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
}
.resultdiv h2:hover,
.resultdiv h2:focus-visible{
  text-decoration: underline;
  outline: none;
}
.pricesection{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pricenumber{
  font-size: 18px;
  font-weight: 800;
  color: #16a34a;
  background: #fff;
  border: 2px solid #16a34a;
  border-radius: 10px;
  padding: 6px 10px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(22,163,74,.18);
  font-family: verdana!important;
}
.priceupd{
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  font-family:Verdana;
  margin-left:5px;
}
.google_reviews_link{
  display:block;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  line-height: 1.2;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
}
.google_reviews_link img.new-tab-icon{
  width: 14px;
  height: 14px;
  object-fit: contain;
  vertical-align: middle;
}
.google_reviews_link:hover,
.google_reviews_link:focus-visible{
  text-decoration: underline;
  outline: none;
}
.descriptionspan{
    display:block;
    padding:2px;
    line-height:130%;
    font-family:Times;
    font-size:15px;
    color:#252525;
}
.categoriesspan{
    display:inline-block;
    padding:2px;
    line-height:130%;
    font-family:Times;
    font-size:14px;
    color:gray;
}
.typespan{
    display: inline-block;
    padding:0px;
    line-height:130%;
    font-family:Times;
    font-size:13px;
    vertical-align: middle;
}
.sep {
    display:inline-block;
    font-family:Times;
    font-size:11px;
    padding:0px 3px 0px 3px;
}
.address_section_1{
    font-family: Verdana, sans-serif!important;
    display:inline-block;
    padding:0px;
    line-height:130%;
    font-size:11px;
    color:gray;
    margin:0px;
    cursor:pointer;
    user-select: none;
}
.domainlist{
    display:block;
    padding:0px;
    margin:0px;
}
.domainlist span{
    font-family: Verdana, sans-serif!important;
    display:inline-block;
    vertical-align:middle;
    color:#2f2f2f;
    font-size:20px;
    font-weight:normal;
    margin-top:-3px;
}
.footer{
    position:relative;
    display:block;
    width:100%;
    text-align:center;
    font-family:Verdana;
    padding:25px 10px 55px 10px;
    margin:0px;
    text-align:center;
    border-style:none;
    z-index:1;
    width:100%;
}
.footer a{
    display:inline-block;
    font-family: Verdana, sans-serif!important;
    font-size:12px;
    color:#626262;
    margin-left:14px;
    margin-bottom:3px;
}
.footer a:hover{
    color:black;
}
.footerhome{
    position:relative;
    display:block;
    width:100%;
    text-align:left;
    font-family:Verdana;
    padding:25px 10px 55px 10px;
    margin-top:0px;
    margin-bottom:0px;
    margin-left:auto;
    margin-right:auto;
    text-align:right;
    border-style:solid none none none;
    border-width:1px;
    border-color:#DADADA;
    z-index:1;
}
.footerhome a{
    display:inline-block;
    font-family:Times;
    font-size:14px;
    color:white;
    margin-left:7px;
    margin-bottom:3px;
}
.footerhome a:hover{
    color:#EAE8EB;
}
.footer2{
    margin-top:100px;
    margin-bottom:50px;
    line-height:140%;
    width:100%;
    text-align:center;
    z-index:1;
}
.footer2 span{
    font-family: Verdana, sans-serif!important;
    color:#B0B0B0;
    font-size:12px;
    display:inline-block;
    vertical-align:middle;
}
.footer2 img{
    opacity:0.8;
    height:40px;
    width:40px;
}
#suggestions_list{
    display:none;
    position:fixed;
    z-index:10;
    background-color:white;
    line-height:130%;
    border-style:solid;
    border-width:1px;
    border-color:black;
    white-space:nowrap;
    overflow-y:auto;
}
.sugg{
    padding:2px 4px 2px 4px;
    font-family: Verdana, sans-serif!important;
    font-size:12px;
    color:#474747;
    cursor:context-menu;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currentlysupported by Chrome, Edge, Opera and Firefox */
    line-height: 120%;
}
.sugg:hover{
    color:black;
    background-color:#e0e0e0;
}
.noresults{
    padding:20px 0px 0px 0px;
    line-height:130%;
    font-family: Verdana, sans-serif!important;
    font-size:14px;
    padding-bottom:10px;
    color:#303030;
    width:100%;
    max-width:700px;
}
.noresults a{
    font-family: Verdana, sans-serif!important;
    font-size:14px;
    display:inline-block;
    margin-top:0px;
    color:blue;
}
.DomainForm{
    display:block;
    font-family:Times;
    color:#303030;
    width:100%;
    max-width:850px;
    text-align:center;
    padding:100px 10px 100px 10px;
    line-height:130%;
    margin-left:auto;
    margin-right:auto;
}
.DomainForm input {
    font-family:Times;
    font-size:15px;
    color:black;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-style:solid;
    border-width:1px;
    border-color:#D0D0D0;
    background-color:white;
    padding:5px;
    width:100%;
    max-width:200px;
    margin-left:auto;
    margin-right:auto;
    display:block;
}
.DomainForm input:focus {
    color:black;
    outline: none;
    border-color:#949494;
}
.checkbutton{
    width:100px!important;
    padding:2px 7px 2px 7px!important;
    font-size:15px!important;
    background-color:#DADADA!important;
    margin-top:7px!important;
}
.checkbutton:hover{
    color:black!important;
    outline: none!important;
    border-color:#949494!important;
}
.pagessection{
    text-align:center;
    font-family:Times;
    font-size:15px;
    max-width:700px;
}
.pagessection a{
    font-family:Times;
    font-size:15px;
    color:blue;
    vertical-align:top;
}
.pagessection a:hover{
    color:black;
}
.removeeleminspan{
    display:inline-block;
    font-family:Times;
    font-size:13px;
    margin:4px 5px 4px 5px;
    padding:0px 1px 0px 1px;
    cursor:pointer;
    border-style:solid solid solid solid;
    border-width:2px 2px 2px 2px;
    box-shadow: 0px 0px 4px 1px #888888;
    -moz-box-shadow: 0px 0px 4px 1px #888888;
    -webkit-box-shadow: 0px 0px 4px 1px #888888;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-color:grey;
    background-color:white;
}
.removeeleminspan:hover{
    color:red;
}
.remheadspan{
    font-weight:normal;
}
.remheadspan:hover{
    color:#3C3C3C!important;
    cursor:auto!important;
}
#pricelimitelem{
    position:fixed;
    display:none;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    max-width:1920px;
    padding:0px 10px 0px 10px;
    z-index:9;
    margin-top:0px;
}
.pricelimitelemin{
    width:100%;
    max-width:1200px;
    padding:0px;
    text-align:left;
    margin-left:auto;
    margin-right:auto;
}
.pricelimitelemin span{
    display:inline-block;
    font-family:Times;
    font-size:12px;
    margin-right:10px;
    padding:2px 0px 2px 0px;
}
.pricelimitselect{
    box-sizing: border-box;
    font-family: Times;
    font-size:12px;
    color:black;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-style:solid;
    border-width:2px;
    box-shadow: 0px 0px 4px 1px #888888;
    -moz-box-shadow: 0px 0px 4px 1px #888888;
    -webkit-box-shadow: 0px 0px 4px 1px #888888;
    border-color:grey;
    background-color:white;
    padding:1px 2px 1px 2px;
    margin:4px 5px 4px 5px;
    outline: none;
}
.botexdiv{
    cursor:pointer;
    background-color:#F2F2F2;
    border-style:solid;
    border-width:2px;
    border-color:black;
    padding:10px 5px 10px 5px;
}
.botexdiv:hover{
    background-color: #E8E8E8;
}
.learnmore {
    display:inline-block;
    font-family:Verdana;
    font-size:12px;
    color:#626262;
    margin-left:7px;
    margin-bottom:3px;
    padding:2px 5px 2px 5px;
    border-style:none solid none solid;
    border-width:1px;
    border-color:#E1E1E1;
    margin-left:0px;
    z-index:1;
}
.learnmore:hover{
    color:black;
}
.search_key{
    font-size:11px;
    font-weight:bold;
    color:#A5A5A5;
    padding:5px 0px 5px 0px;
    margin:-7px 0px 0px 0px;
    line-height: 120%;
}
#suggestionsdiv{
    display:none;
    max-width:700px;
    max-height:300px;
    overflow-x:auto;
    padding:10px 0px 30px 0px;
    background-color:transparent;
    z-index:6;
    border-style:none none solid none;
    border-width:3px;
    border-color:grey;
}
#suggestionsdiv a{
    margin:0px;
}
#suggestionsdiv::-webkit-scrollbar {
  width: 10px;
}
/* Track */
#suggestionsdiv::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 5px;
}
/* Handle */
#suggestionsdiv::-webkit-scrollbar-thumb {
  background: black; 
  border-radius: 10px;
}
/* Handle on hover */
#suggestionsdiv::-webkit-scrollbar-thumb:hover {
  background: black;
}
#closesugg{
    display:none;
    padding:5px 0px 0px 3px;
    margin:0px;
    background-color:transparent;
    z-index:6;
}
#closesugg img{
    padding:0px;
    width:20px;
    margin:0px 10px 0px 0px;
    cursor:default;
}
.nresultsdiv{
    display:inline-block;
    width:100%;
    max-width:700px;
    z-index:1;
    margin-top:0px;
    line-height:100%;
    padding:0px 10px 7px 10px;
}
.nresultsdiv span{
    font-family: Verdana, sans-serif!important;
    font-size:14px;
    color:#474747;
    display:inline-block;
}
.nresultsdiv h1{
    font-family: Verdana, sans-serif!important;
    display:block;
    margin:0px 0px 5px 0px;
    padding:0px;
    font-size:19px;
    font-weight:bold;
    border-style:none;
    color:#474747;
    line-height:140%;
    word-break:break-word;
}
#srchbottom{
    z-index:1;
    margin:0px;
    padding:0px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currentlysupported by Chrome, Edge, Opera and Firefox */
}
#variations_body{
    z-index:4;
    display:block;
    margin:0px;
    padding:0px 10px 0px 10px;
    padding-top:5px;
    padding-bottom:5px;
    width:100%;
    max-width:700px;
    min-height:45px;
    background-color:#fdfdfd;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
    font-weight:bold;
}
#variationsdiv{
    z-index:1;
    display:block;
    visibility:hidden;
    margin:0px;
    padding:0px;
    width:100%;
    max-width:700px;
    background-color: #FCFCFC;
}
#variationsdiv::-webkit-scrollbar {
  height: 5px;
}
#variationsdiv::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px white; 
  border-radius: 4px;
}
#variationsdiv::-webkit-scrollbar-thumb {
  background: #AFAFAF; 
  border-radius: 4px;
}
#variationsdiv::-webkit-scrollbar-thumb:hover {
  background: #AFAFAF;
}
#variationsdiv img{
    height:20px;
}
.formselect_place {
    display:inline-block;
    box-sizing: border-box;
    font-family: Verdana!important;
    font-size:13px;
    color:#eeeeee;
    background-color:#1e1e1e;
    padding:3px;
    max-width:120px;
    margin:0px;
    margin-right:5px;
    margin-bottom:5px;
    outline: none;
    z-index:1;
    border-style:solid;
    border-width:2px;
    border-color:#1e1e1e;
    border-radius:5px;
}
.formselect_place option{
    background-color: #F5F5F5;
    color:black;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
}
.formselect_variations {
    display:inline-block;
    box-sizing: border-box;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
    color:#eeeeee;
    background-color:#1e1e1e;
    padding:3px;
    max-width:200px;
    margin:0px;
    margin-right:5px;
    margin-bottom:5px;
    outline: none;
    z-index:1;
    border-style:solid;
    border-width:2px;
    border-color:#1e1e1e;
    border-radius:5px;
}
.formselect_variations option{
    background-color: #F5F5F5;
    color:black;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
}
.formselect_variations_single_variation {
    display:inline-block;
    box-sizing: border-box;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
    color:#eeeeee;
    background-color:#1e1e1e;
    padding:3px;
    max-width:200px;
    margin:0px;
    margin-right:5px;
    margin-bottom:5px;
    outline: none;
    z-index:1;
    border-style:solid;
    border-width:2px;
    border-color:#1e1e1e;
    border-radius:5px;
}
.formselect_variations_single_variation option{
    background-color: #F5F5F5;
    color:black;
    font-family: Verdana, sans-serif!important;
    font-size:13px;
}
.bestpricecat{
    display:inline-block;
    margin:30px 10px 0px 10px;
    font-size:18px;
    background-color:#F5F5F5;
    padding:10px;
    width:90%;
    max-width:400px;
    color:#050505;
    font-family:Times;
    border-radius:15px;
   -moz-border-radius:15px;
   -webkit-border-radius:15px;
    border-style:none;
    box-shadow: 0px 0px 6px black;
}
.bestpricecat:hover{
    background-color:#EBEBEB;
}
.cattitles{
    display:inline-block;
    padding:5px 10px 5px 10px;
    margin:8px;
    background-color:#F5F5F5;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    font-family:Times;
    font-size:13px;
    color:#050505;
    box-shadow: 0px 0px 4px black;
    font-weight:bold;
}
.cattitles:hover{
    background-color:#EBEBEB;
}
.bestpricecattitle{
    display:block;
    margin:10px 0px 0px 0px;
    font-size:18px;
    padding:10px;
    width:100%;
    color:#050505;
    font-family:Times;
    font-weight:bold;
}
.bestpricecattitle span{
    display:inline-block;
}
.nresultsdiv{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nresultsdiv .breadcrumbs nav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.3;
  margin-top:10px;
  margin-left:-4px;
}
.nresultsdiv .breadcrumbs nav a{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  text-decoration: none;
  font-weight: 600;
  color: #2563eb;
  border-radius: 6px;
  padding: 2px 4px;
  transition: background .15s ease, box-shadow .2s ease;
}
.nresultsdiv .breadcrumbs nav a:hover,
.nresultsdiv .breadcrumbs nav a:focus-visible{
  background: rgba(37,99,235,.12);
  box-shadow: 0 0 0 3px rgba(37,99,235,.20);
  outline: none;
}
.nresultsdiv .breadcrumbs nav span{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  opacity: .6;
  user-select: none;
}
.nresultsdiv h1{
  margin:-7px 0px 0px 0px;
  padding:0px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  font-weight: 800;
  color:#111826;
  letter-spacing: .3px;
  word-break: break-word;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial!important;
}
.breadcrumbs_2{
    z-index:1;
    font-size:11px;
    border-style:none;
    padding:0px 10px 10px 10px;
    margin:50px 2px 5px 2px;
    width:100%;
    max-width:700px;
    white-space:nowrap;
    overflow-x:auto;
}
.breadcrumbs_2 a{
    line-height:110%;
    font-family: Verdana, sans-serif!important;
    font-size:12px;
    color:#4f4f4f;
    display:inline-block;
    vertical-align:middle;
    padding:5px;
    background-color:transparent;
    border-style:solid;
    border-width:1px;
    border-color:#474747;
    /*text-decoration: underline;*/
}
.breadcrumbs_2 a:hover{
    color:#474747;
}
.breadcrumbs_2 nav{
    display:block;
    padding:0px;
    margin:0px;
    color:#fafafa;
}
.breadcrumbs_2 span{
    display:inline-block;
    vertical-align: middle;
    font-family: Verdana, sans-serif!important;
    font-size:12px;
    font-weight:bold;
    color:#474747;
    padding:0px 3px 0px 3px;
}
.menuline{
    height:0px;
    margin:10px 0px 0px 0px;
    padding:0px;
    line-height:100%;
    border-style:solid none none none;
    border-color:grey;
    border-width:3px;
    width:100%;
    max-width:700px;
}
.end_results_breadcrumbs_text{
    padding:0px;
    margin:0px;
}
.end_results_breadcrumbs_text div{
    font-family:Times!important;
    font-size:14px!important;
    margin:0px!important;
    padding:0px 0px 0px 0px;
    text-align:left;
}
.end_results_breadcrumbs{
    z-index:1;
    text-align:left;
    margin:40px 0px -20px 0px;
    padding:10px 0px 0px 0px;
    border-style:solid none none none;
    border-width:1px;
    border-color:#E5E3E3
}
.end_results_breadcrumbs a{
    font-family:Times;
    font-size:13px;
    font-weight:bold;
    color:#0041C2;
    display:inline-block;
    vertical-align:middle;
    padding:4px 7px 4px 7px;
    border-style:solid;
    border-width:1px;
    border-color:#0041C2;
}
.end_results_breadcrumbs a:hover{
    color:black;
    border-color:black;
}
.end_results_breadcrumbs span{
    display:inline-block;
    vertical-align: middle;
    font-family:Times;
    font-size:14px;
    font-weight:bold;
    color:#7B7979;
}
.menu_button{
    display:inline-block!important;
    vertical-align:middle!important;
    border-style:none none none none!important;
    border-width:1px!important;
    border-color:#6B6B6B!important;
    padding:0px 7px 11px 7px!important;
    border-radius: 7px!important;
    margin-left:50px;
    line-height:100%;
    font-family:Verdana;
    font-size:20px;
    color:#6B6B6B!important;
    font-weight:bold;
    background-color:#F5F5F5;
}
.menu_button:hover{
    color:black!important;
    border-color:black!important;
}
.menu_button img{
    width:20px;
    height:20px;
}
.fixed-logo{
    width:35px;
    margin-right:7px;
    vertical-align:middle;
}
.breadcrumbs_m{
    z-index:1;
    font-size:12px;
    display:inline-block;
}
.breadcrumbs_m a{
    font-family: Verdana, sans-serif!important;
    font-size:11px;
    font-weight:normal!important;
    color:#fafafa;
    display:inline-block;
    vertical-align:middle;
    background-color:#3C3C3C;
    padding:3px 5px 3px 5px;
    margin-left:5px;
    border-radius: 8px 8px 8px 8px;
}
.breadcrumbs_m a:hover{
    color:#fafafa;
}
.breadcrumbs_m nav{
    display:inline-block;
    padding:0px;
    margin:2px 0px 0px 0px;
    color:#7B7979;
}
.srch_breadcrumbs{
      display: flex;
      align-items: center;
      padding:0px;
      gap: 8px;
      flex-wrap: wrap;
      font-size: 12px;
      color: #475569;
      margin: -2px 0px 5px 0px;
      white-space:nowrap;
      overflow:hidden;
}
.srch_breadcrumbs a{
      font-family:Verdana!important;
      font-size: 12px;
      text-decoration: none;
      color: #2563eb;
      font-weight: 600;
      border-radius: 8px;
      padding: 2px 4px;
      transition: background .15s ease, box-shadow .2s ease;
}
.srch_breadcrumbs a:hover,
.srch_breadcrumbs a:focus-visible{
      background: rgba(37,99,235,.12);
      box-shadow: 0 0 0 3px rgba(37,99,235,.20);
      outline: none;
}
.srch_breadcrumbs span{ opacity:.6; user-select:none; }



.breadcrumbscatgs a{
    font-size:12px;
    color:#0000A5;
}
.breadcrumbscatgs a:hover{
    color:black;
}
#clone_srch_form{
    visibility:hidden;
}
#srch_form{
    display: block;
    margin:0px;
    width:100%;
    max-width:700px;
    text-align:left!important;
    background-color:#fdfdfd;
    padding:5px 0px 5px 0px;
    z-index:2;
    border-style:none none solid none;
    border-width:3px;
    border-color:#A8A8A8;
}
#srch_form select{
    display:block;
    width:300px;
    margin-left:auto;
    margin-right:auto;
    margin-top:3px;
    margin-bottom:3px;
    font-family:Verdana;
    font-size:16px;
    padding:5px;
    border-style:solid;
    border-color:black;
    border-width:0px;
    background-color: white;
}
#srch_form option{
    font-family:Verdana;
    font-size:12px;
    padding:5px;
    color:black;
    background-color:white;
}
.products_links_area{
  max-width: 700px;
  width: 100%;
  margin-top:10px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.srchlink{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(2,6,23,.03);
  transition: border-color .15s ease, box-shadow .2s ease, transform .12s ease, background .15s ease;
  position: relative;
}
.srchlink:hover,
.srchlink:focus-visible{
  outline: none;
  transform: translateY(-2px);
  border-color: #9ec0ff;
  box-shadow: 0 14px 28px rgba(37,99,235,.14);
  background: radial-gradient(120% 100% at 0% 0%, rgba(37,99,235,.04), transparent 60%), #ffffff;
}
.srchlink:visited h2{
  color: #111826;
}
.minprice{
  flex-shrink: 0;
  align-self: flex-start;
  background: #ffffff;
  border: 2px solid #16a34a;
  color: #16a34a;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(22,163,74,.18);
  font-family: inherit;
}
.minprice::after{
  content: " χαμηλότερη";
  display: block;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  color: #16a34a;
  opacity: .8;
  margin-top: 4px;
  white-space: nowrap;
}
.catag_size{
    display:none;
}
.srchlink h2{
  margin: 0;
  color: #111826;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  display: inline;
  word-break: break-word;
  font-family: inherit;
}
.srchlink .title_specs{
  font-weight: 600;
  color: #475569;
  font-size: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2px 6px;
  margin-left: 6px;
  line-height: 1.2;
  white-space: nowrap;
}
/* ===== Responsive ===== */
@media (max-width: 600px){
  .srchlink{
    padding: 12px 14px;
    gap: 0px;
  }
  .minprice{
    font-size: 14px;
    border-radius: 10px;
    min-width: 54px;
    padding: 7px 8px;
  }
  .minprice::after{
    font-size: 9px;
  }
  .srchlink h2{
    font-size: 15px;
    line-height: 1.3;
  }
  .srchlink .title_specs{
    font-size: 13px;
    padding: 0px;
  }
}
@media (max-width: 400px){
  .srchlink{
    flex-direction: column;
    align-items: flex-start;
  }
  .minprice{
    order: -1;
    margin-bottom: 0px;
  }
  .minprice::after{
    display: inline;
    margin-left: 4px;
  }
}
.title_specs{
    font-family:Verdana!important;
    display:inline!important;
    padding:0px;
    margin:0px;
    text-decoration:none!important;
    color:#5c5c5c;
    font-size:14px;
}
.morecolors{
    display:inline-block;
    font-size:12px;
    text-align:left;
    padding-top:10px;
    color:#A8A8A8;
}
.homepagecatgs{
    text-align:center;
    border-style:solid none none none;
    border-color:#DEDEDE;
    border-width:2px;
    margin:50px 0px 0px 0px;
    padding:10px 0px 0px 0px;
}
.homepagecatgs a{
    font-family:Verdana;
    font-size:12px;
    display:inline-block;
    background-color:#F5F5F5;
    padding:10px;
    width:90%;
    max-width:200px;
    color:#050505;
    margin:30px 10px 0px 10px;
    border-radius:15px;
   -moz-border-radius:15px;
   -webkit-border-radius:15px;
    border-style:none;
    box-shadow: 0px 0px 6px black;
}
.homepagecatgs a:hover{
    background-color:#EBEBEB;
}
.srchh1{
    font-family: Verdana, sans-serif!important;
    display:block;
    margin:0px 0px 4px 0px;
    padding:0px 0px 0px 2px;
    font-size:19px;
    font-weight:bold;
    border-style:none;
    line-height:140%;
    text-align:left;
    word-break:break-word;
    color: #111826;
    letter-spacing: .4px;
}
.newfilterserie{
    display:none;
    padding:0px;
    margin:5px 0px 0px 0px;
    text-align:left!important;
}
#newfilterserie_nav{
    display:inline-block;
    -webkit-overflow-scrolling:touch;
    margin:0px;
    overflow-y:auto;
    width:100%;
    max-height:350px;
    line-height:120%;
    z-index:0;
    padding-bottom:5px;
    border-style:none none none none;
}
#newfilterserie_nav::-webkit-scrollbar {
  max-width:8px;
}
#newfilterserie_nav::-webkit-scrollbar-track {
  border-style:solid;
  border-width:1px;
  border-color:#0000FF;
  border-radius: 10px;
}
#newfilterserie_nav::-webkit-scrollbar-thumb {
  background: #0000FF; 
  border-radius: 10px;
}
#newfilterserie_nav::-webkit-scrollbar-thumb:hover {
  background:#0000AF;
}
.serie_inactive{
    font-family:Verdana;
    font-size:13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111826;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(2,6,23,.02), transparent 70%),
    #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px;
  margin:5px 10px 5px 0px;
  transition: transform .12s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.serie_inactive:hover,
.serie_inactive:focus-visible{
  transform: translateY(-2px);
  border-color: #9ec0ff;
  box-shadow: 0 8px 18px rgba(37,99,235,.18);
  outline: none;
}
.serie_active{
    font-family:Verdana;
    font-size:13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color:#fafafa;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(2,6,23,.02), transparent 70%),
    #3d3d3d;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px;
  margin:5px 10px 5px 0px;
}
.filter_text_brands{
    font-family:Verdana!important;
    font-size:13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  color: #111826;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 12px;
  transition: transform .1s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  width:340px!important;
}
.filter_text_brands:hover,
.filter_text_brands:focus-visible{
  transform: translateY(-1px);
  border-color: #9ec0ff;
  box-shadow: 0 8px 18px rgba(37,99,235,.18);
  outline: none;
}
.filter_1_arrow{
  font-weight: 800;
  color: #475569 !important;
  translate: 0 1px;
}
#select_srch_spec{
    font-family:Verdana!important;
    font-size:13px!important;
  appearance: none!important; -webkit-appearance:none!important; -moz-appearance:none!important;
  display: inline-block !important;
  background: #ffffff!important;
  color: #111826!important;
  border: 1px solid #e5e7eb!important;
  border-radius: 10px!important;
  padding: 10px 36px 10px 12px!important;
  cursor: pointer!important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%)!important;
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px)!important;
  background-size: 5px 5px, 5px 5px!important;
  background-repeat: no-repeat!important;
  width:340px!important;
}
#select_srch_spec:focus{
  outline: none;
  border-color: #9ec0ff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.20);
}
#select_srch_variations{
    font-family:Verdana!important;
    font-size:13px!important;
  appearance: none!important; -webkit-appearance:none!important; -moz-appearance:none!important;
  display: inline-block !important;
  background: #ffffff!important;
  color: #111826!important;
  border: 1px solid #e5e7eb!important;
  border-radius: 10px!important;
  padding: 10px 36px 10px 12px!important;
  cursor: pointer!important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%)!important;
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px)!important;
  background-size: 5px 5px, 5px 5px!important;
  background-repeat: no-repeat!important;
  width:340px!important;
}
#select_srch_variations:focus{
  outline: none;
  border-color: #9ec0ff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.20);
}
.filter_1_arrow{
    display:inline-block;
    padding:0px;
    z-index:2;
    margin-top:0px;
    margin-bottom:0px;
    margin-left:-13px;
    margin-right:13px;
    font-weight:bold;
    color:#474747;
}
.home_maincat_nav{
    display:block;
    margin:10px auto 0px auto!important;
    width:100%;
    max-width:950px;
    z-index:0;
}
.home_maincat_nav a{
    font-family: Georgia;
    /*font-weight:bold;*/
    font-size:15px;
    padding:3px 7px 3px 7px;
    margin:5px 5px 10px 5px;
    background-color:white;
    color:black;
    box-shadow: 0px 0px 6px grey;
    -webkit-box-shadow: 0px 0px 6px grey;
    -moz-box-shadow: 0px 0px 6px grey;
}
.home_maincat_nav a:hover{
    box-shadow: 0px 0px 6px black;
    -webkit-box-shadow: 0px 0px 6px black;
    -moz-box-shadow: 0px 0px 6px black;
}
#backtotopimg{
    position:fixed;
    display:none;
    height:50px;
    z-index:2;
    bottom:50px;
    right:10px;
    opacity:0.7;
}
#backtotopimg img{
    height:100%;
}
#selectnewspec{
    text-align:center;
    font-size:15px;
    font-family:georgia;
    padding-top:10px;
}
.menu_catg_link{
    display:block;
    width:80%;
}
.menu_catg_link a{
    display:inline-block;
    margin-left:30px!important;
    font-family:Verdana;
    font-size:15px;
    text-align:center;
    color:#474747;
    padding:10px;
    background-color:transparent;
    line-height:150%;
    border-style:solid;
    border-width:3px;
    border-color:#474747;
    border-radius:20px;
}
.menu_icon{
    width:10px;
    vertical-align: middle;
    margin: 0px 5px 0px 0px;
    margin-top:-2px;
}
.headimg{
    margin-top:10px;
    font-family:Verdana;
    font-size:12px;
}
.headimg img{
    width:150px;
    vertical-align:bottom;
    border-style:solid;
    border-width:1px;
    border-color:#D0D0D0;
}
.headimg span{
    display:inline-block;
    /*background-color:#F8F8F8;*/
    /*border-style:solid;
    border-width:1px;
    border-color:#D0D0D0;*/
    padding:5px;
    color:#A8A8A8;
}
.seemore_1{
    font-family:Verdana;
    font-size:11px;
    color:#464646;
    margin-top:0px;
    width:100%;
    max-width:500px;
    padding:5px 0px 0px 0px;
    font-style:italic;
}
.seemore_1 a{
    display:inline-block;
    font-family:Verdana;
    font-size:11px;
    vertical-align:top;
    padding:0px;
    color:#FD1C03;
    font-style:italic;
    text-decoration: underline;
}
.div_shoe_variation{
    display:inline-block;
    margin:0px -5px 0px 10px;
    padding:0px;
    font-family:Verdana;
    font-size:12px;
    font-weight:normal;
    color:#282828;
    vertical-align:middle;
    line-height:100%;
}
.catg_vars{
    display:inline-block;
    font-family:Verdana;
    font-size:11px;
    color:#34282C;
    max-width:180px;
    padding-left:10px;
}
.class_for_selected_variation{
    display:inline-block;
    font-weight:bold;
    color:green;
    padding:0px 2px 0px 2px;
    border-style:solid;
    border-width:1px;
    border-color:green;
}
.variations_on_shop_msg{
    font-family:Verdana;
    font-size:12px;
    color:#64748b;
    display:inline-block;
    padding:0px;
    margin:0px;
    line-height:100%;
}
.seemore_div{
    box-sizing: border-box;
    max-width:700px;
    margin-top:40px;
    margin-bottom:80px;
    line-height:150%;
}
.seemore_div img{
    width:130px;
    vertical-align:top;
    border-style:solid;
    border-width:1px;
    border-color:#D0D0D0;
    vertical-align:top;
    margin-top:-2px;
}
.seemore_inn_div{
    display:block;
    padding:10px 0px 10px 0px;
    margin:0px;
}
.seemore_inn_div h3{
    display:inline-block;
    padding:0px;
    margin:0px;
    margin-bottom:5px;
}
.seemore_inn_div a{
    font-family:Verdana;
    font-size:16px;
    color:#2A2A2A;
    font-weight:normal;
    display:inline-block;
    line-height:150%;
}
.seemore_inn_div a:hover{
    color:#2A2A2A;
}
.seemore_price{
    box-sizing: border-box; 
    font-family:Verdana;
    font-size:14px;
    color:#2A2A2A;
    background-color:transparent;
    padding:4px;
    border-style:solid;
    border-width:1px;
    border-color:#9B9B9B;
}
.seemore_title{
    display:inline-block;
    padding:0px 5px 2px 0px;
    margin-bottom:10px;
    font-family:Verdana;
    font-size:18px;
    color:#49413F;
    border-style:none none solid none;
    border-width:2px;
    border-color:#49413F;
    font-weight:bold;
}
.seemore_breadcrumbs{
    font-family:Verdana;
    color:#045F5F;
    font-size:16px;
    padding:5px 0px 0px 0px;
}
.seemore_breadcrumbs:hover{
    color:#045F5F;
}
#LoadMoreButton{
    width:100%;
    max-width:700px;
    text-align:center;
    margin-top:40px;
    margin-bottom:80px;
}
#LoadMoreButton a{
    color:#ececec;
    background-color:#252525;
    padding:10px 20px 10px 20px;
    border-radius:10px;
    font-family:Verdana;
    font-size:16px;
    
}
#LoadMoreButton img{
    height:20px;
    display:inline-block;
    visibility:hidden;
}
.big_4{
  max-width: 700px;
  width: 100%;
  margin: 0px 0px 16px 0px;
  padding: 16px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(2,6,23,.05);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.big_4_title{
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111826;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, rgba(37,99,235,.08), transparent 60%);
  border-radius: 8px;
  padding: 6px 10px;
}
.big4div{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(2,6,23,.03);
  transition: box-shadow .2s ease, border-color .15s ease, transform .12s ease, background .15s ease;
  position: relative;
  vertical-align:middle;
  white-space:nowrap;
  overflow:hidden;
}
.big4div:hover{
  border-color: #9ec0ff;
  box-shadow: 0 16px 30px rgba(37,99,235,.14);
  transform: translateY(-2px);
  background: radial-gradient(120% 100% at 0% 0%, rgba(37,99,235,.04), transparent 60%), #ffffff;
}
.map_icon_big4{
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  vertical-align:middle;
  margin-top:8px;
}
.big4div > a{
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  line-height: 1.2;
  color: #111826;
  font-size: 14px;
  font-weight: 600;
  vertical-align:middle;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.big4domain{
  color: #111826;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 4px 10px rgba(2,6,23,.04);
  max-width: 100%;
  word-break: break-word;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  vertical-align:middle;
}
.big4_price{
  font-size: 16px;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
  background: #ffffff;
  border: 2px solid #16a34a;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 6px 14px rgba(22,163,74,.18);
  white-space: nowrap;
  vertical-align:middle;
}
.priceupd_big4{
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  line-height: 1.2;
  vertical-align:middle;
}
#big4more{
  opacity: .5;
}
#big4more a{
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  line-height: 1.2;
  color: #111826;
  font-size: 14px;
  font-weight: 600;
}
#big4more .big4domain{
  text-decoration: none;
}
#big4more .big4_price{
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
  box-shadow: none;
  font-weight: 700;
}
.google_reviews_link{
    display:inline-block!important;
    margin-top:8px!important;
    display:inline-block!important;
    font-family:Verdana!important;
    font-size:13px!important;
    color:#636363!important;
    line-height:130%!important;
}
.new-tab-icon{
    height:9.5px;
    padding:0px;
    margin:0px 0px 0px 2px;
    opacity:0.7;
    vertical-align:middle;
    margin-top:-2px;
}



/*
--------------------------------------------------------
------------------secondary pages-----------------------
--------------------------------------------------------
*/

.second_header{
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(2,6,23,.04);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.second_header_in{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.second_logourl{
  text-decoration: none;
  color: #111826;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .2px;
  display: inline-block;
  background: linear-gradient(90deg, rgba(37,99,235,.08), transparent 60%);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 4px 12px rgba(2,6,23,.05);
  transition: box-shadow .2s ease, border-color .15s ease, transform .12s ease, background .15s ease;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.second_logourl:hover,
.second_logourl:focus-visible{
  outline: none;
  transform: translateY(-1px);
  border-color: #9ec0ff;
  box-shadow: 0 16px 30px rgba(37,99,235,.14);
  background: radial-gradient(120% 100% at 0% 0%, rgba(37,99,235,.06), transparent 60%), #ffffff;
}
.second_header nav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.second_menu_link{
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 4px 10px rgba(2,6,23,.04);
  transition: color .15s ease, border-color .15s ease, box-shadow .2s ease, background .15s ease, transform .12s ease;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.second_menu_link:hover,
.second_menu_link:focus-visible{
  outline: none;
  color: #111826;
  background: #ffffff;
  border-color: #9ec0ff;
  box-shadow: 0 16px 30px rgba(37,99,235,.14);
  transform: translateY(-1px);
}
.second_menu_link.active{
  color: #111826;
  font-weight: 700;
  background: #eef4ff;
  border-color: #9ec0ff;
  box-shadow: 0 8px 18px rgba(37,99,235,.18);
}
.second_main{
  max-width: 1100px;
  width: 100%;
  margin: 32px auto 40px;
  padding: 24px 16px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(2,6,23,.06);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  text-align: center;
}
.second_main h1{
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  font-weight: 800;
  color: #111826;
  letter-spacing: -.02em;
  font-family: Arial;
}
.second_p_center{
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 10px 0;
}
#checkdomain{
  border: 2px solid #d6e2ff;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(37,99,235,.06), transparent 40%),
    #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font: 600 15px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color: #0f172a;
  min-width: 200px;
  max-width: 260px;
  box-shadow: 0 8px 20px rgba(37,99,235,.10);
  outline: none;
  transition: border-color .2s ease, box-shadow .25s ease, background .25s ease;
  vertical-align: middle;
  text-align: left;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
#checkdomain::placeholder{
  color: #64748b;
  opacity: .9;
  font-weight: 600;
}
#checkdomain:focus{
  border-color: #6aa6ff;
  box-shadow: 0 0 0 4px rgba(106,166,255,.25),
              0 10px 26px rgba(37,99,235,.18);
  background: #ffffff;
}
.checkbutton{
  display: inline-block;
  margin-top: 12px;
  font: 700 14px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color: #ffffff;
  background: linear-gradient(90deg,#2563eb 0%,#1e40af 100%);
  border: 1px solid #1e3a8a;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37,99,235,.35);
  transition: transform .12s ease,
              box-shadow .2s ease,
              filter .15s ease;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
.checkbutton:hover,
.checkbutton:focus-visible{
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37,99,235,.45);
  filter: brightness(1.03);
}
.checkbutton:active{
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(30,64,175,.5);
}