﻿:root {
    --color1: #0491FD;
    --color2: #6C757D;
    --color3: black;
    --color4: #ffffff;
}

/* Navbar Container - Flexbox layout for logo and menu */
.navbar-container {
    display: flex;
    flex-direction: column; /* Ensures the search box is placed below the navbar */
    align-items: center;
    position: relative;
    width: 100%;
    background-color: var(--color3); /* Background color for navbar */
    padding-left: 60px; /* Adjusted space for logo */
}

/* Navbar Styling */
.navbar {
    flex-grow: 1; /* Makes navbar expand to fill remaining space */
    display: flex;
    justify-content: center; /* Center the menu on larger screens */
    padding-left: 20px; /* Adjust space between logo and menu */
}

/* Navbar Items - Menu alignment */
.navbar-collapse {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
}

/* Remove margin and padding from the navbar-header */
.navbar-header {
    margin-left: 0; /* Remove any left margin */
    padding-left: 0; /* Remove any left padding */
}

/* Remove margin and padding from the navbar-brand */
.navbar-brand {
    margin-left: 0; /* Remove any left margin */
    padding-left: 0; /* Remove any left padding */
}

/* Navbar Items Centering on Medium Screens */
@media (min-width: 768px) {
    .navbar {
        justify-content: center; /* Center the menu when screen is medium or larger */
    }

    .navbar-collapse {
        margin-left: 20px; /* Adjust space between logo and menu */
    }
}

/* Mobile (Smaller) Screens - Menu behaves normally */
@media (max-width: 768px) {
    .navbar {
        justify-content: flex-start; /* Align items left on mobile */
    }

    .navbar-collapse {
        display: block; /* Stacks the navbar on smaller screens */
    }

    .navbar-header {
        padding: 0; /* Adjust the logo padding */
    }
}

/* Adjustments for mobile and medium screens */
@media (max-width: 1000px) {
    .navbar-collapse {
        padding-left: 20px; /* Ensure the menu items align well with the screen */
    }
}

/* Styling for Navbar Icons and Search */
.navmenuicon {
    margin-left: auto; /* Aligns the icons to the right */
    display: flex;
    align-items: center;
}

/* Search Box Visibility - Appears Below the Menu within Navbar */
#divSearch {
    width: 100%; /* Full width of the navbar container */
    padding-top: 10px; /* Space between the navbar and search box */
    background-color: var(--color3); /* Match background color to navbar */
    display: none; /* Hidden by default */
}



/* Icons Styling */
.menuicon {
    font-size: 20px;
    padding: 5px;
    text-decoration: none;
}

    .menuicon:hover {
        text-decoration:none;
    }



.form-control
{
    border-radius:0 !important;
}










a.navbar-brand, a.navbar-brand:hover {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    color: white;
    font-weight: 600;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }


    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown > .dropdown-toggle:active {
        /*Without this, clicking will make it sticky*/
        pointer-events: none;
    }

}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 400px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /*line-height: 60px;*/ /* Vertically center the text there */
    background-color: var(--color1);
    height: 400px;
}

@media (max-width: 768px) {
/*    .footer {
        height:600px;
    }*/

    .middle {
        position: absolute;
        top: 25px;
    }

    .mainedit {
        /*margin-top: 2px;*/
        margin-top: 49px;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: -16px;
        border: solid 0px red;
    }

}

@media (min-width: 768px) {
    .nav-link {
        min-width: 100px;
        text-align: center;
    }

    .middle {
        /*position: absolute;*/
        top: 30%;
        /*bottom: 30%;*/
    }

    .mainedit {
        /*margin-top: 2px;*/
        margin-top: 56px;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: -16px;
        border: solid 0px red;
    }

    .navmenuheader {
        width: -webkit-calc(100% - 262px);
        width: -moz-calc(100% - 262px);
        width: calc(100% - 262px);
        border: solid 0px red;
    }

    .navmenuicon {
        width: 262px;
        border: solid 0px black;
    }
}

.currency {
    background-color: transparent !important;
    border: none !important;
}

    .currency .select2-search {
        background-color: transparent !important;
        border: none !important;
    }

        .currency .select2-search input {
            background-color: transparent !important;
            border: none !important;
        }

    .currency .select2-results {
        background-color: transparent !important;
        border: none !important;
    }

    .currency .select2-choice {
        background-color: transparent !important;
        border: none !important;
    }

    .currency .select2-container--default .select2-selection--single {
        background-color: transparent !important;
        border: none !important;
    }

.img-flag {
    margin-top: -5px;
    margin-left: -5px;
}

.menuicon {
    width: 30px;
}

.menuiconsize {
    margin-top:5px;
    font-size: 1.3rem;
}


.maincolor {
    color: var(--color2);
}

.altcolor1 {
    color: var(--color3);
}

.altcolor2 {
    color: var(--color2);
}

.mainbgcolor {
    background-color: var(--color1);
}

.altbgcolor1 {
    background-color: var(--color2);
}

.footerh4
{
    color:white;
}

.footertextcolor, a.footertextcolor:hover, a.footertextcolor:active {
    color: var(--color4);
}

.footerh6 {
    color: var(--color4);
    margin-top: 15px;
}

a.footerlink {
    color: var(--color4);
    height: 25px;
}

    a.footerlink:hover, a.footerh6:active {
        color: var(--color2);
    }

a.taglink {
    color: var(--color2);
}

    a.taglink:hover {
        color: var(--color3);
    }

.separator{
    height:35px;
}

.separator-30 {
    height: 30px;
}

.separator-20 {
    height: 20px;
}

.homepaymentdelivery {
    height: 280px;
    /*position: relative;*/
}


.homesubscribe {
    height: 360px;
}

.homesubscriberinput {
    border: 0px;
    border-bottom: solid 1px black;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: transparent;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    text-align: center;
}

.homesubscriberbtn {
    border: 0px;
    /*border-bottom: solid 1px black;*/
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: transparent;
    margin-top: 20px;
    height: 45px;
    width: 100px;
/*    background-color: black;
    color:white;*/
}

.btn {
    background-color: var(--color1);
    color: var(--color4);
}

.btn:hover {
    color: var(--color2);
}

a.socialmedia {
    color: var(--color3);
    font-size: 60px;
}

    a.socialmedia:hover, a.footerh6:active {
        color: var(--color1);
    }



.btnlayout {
    border: 0px;
    /*border-bottom: solid 1px black;*/
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: transparent;
    background-color: var(--color1);
    color: var(--color4);
}

.btn:hover {
    color: var(--color2);
}

.btnlayout1 {
    border: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    /*background-color: transparent;*/
    background-color: var(--color2);
    color: var(--color4);
}

.btnlayout1:hover {
    color: var(--color3);
}

.btnlayout2 {
    border: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    /*background-color: transparent;*/
    background-color: var(--color3);
    color: var(--color4);
}

    .btnlayout2:hover {
        /*background-color: var(--color2);*/
        color: var(--color2);
    }

.btnsize{
    width:160px;
    height:45px;
}

.linkcolor {
    color: var(--color1);
}

.linkcolor, a.linkcolor:hover, a.linkcolor:active {
    color: var(--color2);
}


div.ui-slider-range.ui-widget-header {
    background: var(--color1);
}

.rangeslider.ui-slider .ui-slider-handle {
    /*    width: 20px;
    height: 40px;
    margin-left: 0px;
    top: 0px;*/
    margin-top: 2px;
    width: 20px;
    height: 20px;
    background: var(--color2);
    border-radius: 20px;
}

.rangeslider {
    height: 24px;
}