body {
    font-size: 14px;
    --color : #f7c919;
}

a {
    text-decoration: none;
    color: #888;
    transition: all ease-in .1s .3s;
}

div.top-header {
    background-color: #14387f;
    display: grid;
    grid-template-columns: max-content     max-content;
    gap: 15px;
    padding: 0px 100px;
    align-items: center;
    justify-content: space-between
}

div.top-header >div{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap:20px;

}

div.top-header >div > *{
    font-size: 14px;
    color: #fff;
    padding: 0;
    margin: 0;
    text-decoration: none;    
}

div.top-header >div > a:hover{
    color: var(--color);
}

div.top-header >div.socials > a{
    font-size:20px;
}

div.top-contact-info {
    display: grid;
    grid-template-columns: repeat(3,max-content);
    padding: 10px 100px;
    justify-content: space-between;
    align-items: center;
}

div.top-contact-info > a.logo {
    font-size: 24px;
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    color: var(--color)
}

div.top-contact-info > a.logo > img {
    width: 64px;
}

div.top-contact-info > a.info {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 15px;
}

div.top-contact-info > a.info:hover {
    color:var(--color)
}


div.top-contact-info > a.info > i {
    font-size: 42px;
}


div.top-contact-info > a.info >div {
    display: grid;
}

body > header {
    background-color: #fff;
    padding: 5px 100px;
    display: grid;
    grid-template-columns: max-content auto;
    gap: 25px;
    align-items: center;
}

body > header a.logo{
    display: grid;
    grid-template-columns:  max-content auto;
    align-items: center;
    gap:5px;
    color: #14387f;
}

body > header a.logo img{
    width: 40px;
    height: auto;
}

body > header .navbar-nav > li >  a,header .navbar-nav > li >  a:visited {
    /*color: #fff;*/
}

body > header .navbar-nav > li > a:hover {
    color: var(--color) !important;
}

body > header  button {
    background-color: #000;
    color: var(--color);
    border: none;
    padding: 5px;
    font-size: 20px;
    border-radius: 3px
}

body > footer {
    background: #14387f;
    padding: 25px 0;
}

body > footer > div {
    background: #14387f;
    display: grid;
    grid-template-columns: 30% 20% 20% 30%;
}

body > footer >  div > section{
    padding: 0 15px
}

body > footer > div > section:last-child{
    display: grid;
    align-items: center;
    justify-content: center;
}


body > footer * {
    color:#fff;
}

body > footer section > h3 {
    color: #ffc539;
    font-size: 18px;
    font-weight:bold;
    padding: 10px 0;
    margin: 0;
    margin-bottom:10px;
}

body > footer section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

body > footer section p {
    text-align: justify;
}

body > footer .socials > li{
    display: inline-block;
}

body > footer .socials a{
    font-size: 24px;
    color: var(--color);
    background: #fff;
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
    display: grid;
    justify-content: center;
    align-content: center;
}

/*#region div.basket */

div.basket {
    position: fixed;
    left: 10px;
    top: 0px;
    z-index: 999;
}

div.basket > button {
    border: none;
    background-color: transparent;
    position:relative;
}

div.basket > button > i {
    font-size: 36px !important;
    color: #f7c91a;
}

div.basket > button > span {
    position: absolute;
    background: #ff0000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    text-align: center;
    top: -5px;
    right: 0px;
    line-height: 200%;
}

/*#endregion */

/*#region div.cart */
div.cart {
    width: 350px;
    padding: 5px;
}

div.cart > h2 {
    font-size: 21px;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 10px;
}

div.cart > h4 {
    font-size: 14px;
    color: #888;
    border-bottom: solid 1px #888;
    padding: 5px;
}

div.cart h3 > span {
    font-size: 18px;
    color: #f1594b;
}

div.cart h3 > b {
    font-size: 20px;
}

div.cart a.btn {
    margin: 5px 0;
    width: 100%;
}

div.cart > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
}


div.cart > ul > li {
    border-bottom: solid 3px #ccc;
    overflow: hidden;
    position: relative;
    display:grid;
    grid-template-columns: 150px auto;
    padding: 5px 5px 10px 5px;c
}

div.cart > ul > li > div.b-side {
    display: grid;
    justify-items:  center;
    gap: 5px;
}


div.cart > ul > li > div.b-side > img{
    width: 100px;

}

div.cart > ul > li > div.b-side > div.b-qty {
    display: grid;
    grid-template-columns: max-content 40px max-content;
}

div.cart > ul > li > div.b-side > div.b-qty > input{
    text-align: center;
    direction: ltr;
}

div.cart > ul > li > div.b-content {
    display: grid;
    gap: 5px;
    align-items: center;
}

div.cart > ul > li > div.b-content > h2 {
    font-weight: bold;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

div.cart > ul > li > div.b-content > p {
    color:#999;
    font-size: 12px;
    margin: 0;
    padding: 0 10px 0 0;
}

div.cart > ul > li > div.b-content > div.b-price {
    border: dashed 1px #888;
    padding: 5px;
    display: grid;
    grid-template-columns: auto 60px;
}

div.cart > ul > li > div.b-content > div.b-price > span {
    text-decoration: line-through;
    color: #888;
}

div.cart > ul > li > div.b-content > div.b-price > strong {
    text-align: center;
    direction: ltr;
    border-right:     dashed 1px #888;
}


div.cart > ul > li > div.b-content > span {
    color: #7777ff;
}


div.cart > ul > li > div.b-content > b {
    color: #209520;
}

div.cart >div > h3{
    font-size: 15px;
    text-align: center;
    margin: 0;
    padding: 5px;
    background-color: #88888833;
}



/*#endregion */

/*#region div.adding-cart-item */

div.adding-cart-item {
    position: fixed !important;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.50);
    z-index: 99;
}

div.adding-cart-item > i {
    position: absolute;
    top: 40%;
    left: 50%;
    background: #FFF;
    transform: scale(8);
    background: transparent;
    color: #fff;
}

div.adding-cart-item > i::before {
    font-size: 40px;
}
/*#endregion */

p.basket-message {
    position: fixed;
    top: 0;
    width: 100%;
}

/*#region responsive */

/* Monitor */
@media (min-width: 768px) and (max-width: 992px) {
}

/* Tablet */
@media (min-width: 576px) and (max-width: 768px) {

}

/* Phone */
@media (max-width: 576px) {
    div.top-header {
        grid-template-columns: max-content ;
        gap: 15px;
        padding: 10px ;
        justify-content: center;
    }

    div.top-header >div{
        gap:20px;
        justify-content: center;
    }

    div.top-contact-info {
        grid-template-columns: repeat(1,auto);
        padding: 10px;
        justify-content: stretch;
        gap: 15px;
    }

    div.top-contact-info > a {
        border-bottom:solid 1px #88888855;
        padding-bottom: 10px: 
    }

    div.top-contact-info > a:last-child {
        border-bottom:none;
    }

    body > header {
        padding: 0;
        grid-template-columns: auto max-content ;
        gap: 0;
    }  

    body > header div.logo {
        display: grid;
        border: solid 1px #88888855;
        border-radius: 10px;
        padding: 5px;
        margin: 5px;
    }

    .navbar-toggler-icon {
        font-size: 24px;
        align-content: center;
    }

    body > footer >  div{
        grid-template-columns:  auto;
        gap: 15px;
    }

    body > footer >  div > section > h3{
        text-align: center;
    }

    body > footer >  div.container > p {
        text-align: center;
        padding: 0;
        margin: 0;
    }

    #navbarSupportedContent.show > ul {
        position: fixed;
        background: #fff;
        right: 10px;
        left: 10px;
        padding: 10px;
        box-shadow: #888 1px 1px 5px;
        z-index: 999;
    } 

    #navbarSupportedContent.show > ul > li {
        border-bottom: solid 1px #88888855;
        padding:5px;
    }

    #navbarSupportedContent.show > ul > li > a::after {
        float: left;
        margin: 10px;
    }

}



/*Jam new Styles*/


body > header a.nav-link {
    color: #14387f;
    font-weight:bolder;
}

div ul.topmenbg a.nav-link:hover {
    background-color: #ebb023;
}
div ul.topmenbg a.nav-link {
    background-color: #ffc539;
    color: #14387f;
    border-radius: 0;
    border-left: 1px #14387f solid;
}


.top-header .socials {
}

.top-header .socials a {
    color: #fff;
    font-size:24px;
}

div.logo
{
    float:right;
}

.toprowmenuheader .navbar-nav ul.dropdown-menu {
    background: #123573;

}
.toprowmenuheader .navbar-nav ul.dropdown-menu a.dropdown-item:hover {
    background-color: #ffc539;
}
.toprowmenuheader .navbar-nav ul.dropdown-menu a {
    color:#fff;
    font-size:13px;
}



div.logo img {
    height: 60px;
    width: 60px;
}
.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}
ul.links a:hover {
    color: #ffc539;
}
/*#endregion */