body > div.container-fluid {
    min-height: 400px;
}

.site-float-left {
    float: left;
}

a {
    text-decoration: none !important;
}

a.link-button {
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 500;
    background: #5e87eb;
    color: #fff;
    border-radius: 12px;
    position: relative;
    margin-left:6px;
}


a.link-button::after {
    content: " ";
    position: absolute;
    background: #3e57d0;
    opacity: 0.3;
    width: 0;
    height: 100%;
    display: block;
    border-radius: 12px;
    left: 0px;
    top: 0px;
    visibility: hidden;
    transition: .3s;
}

a.link-button:hover::after {
    width: 100%;
    visibility: visible;
}

div.top-toolbar{
    margin: 0 5px;
    display: grid;
    grid-template-columns: auto auto auto auto ;
    grid-gap: 5px;
    
}

div.top-toolbar > .toolbar > button
{
    border:0;
    padding: 8px;
    border-radius: 10px;
    background: #5e87eb;
    color:#fff; 
}

div.top-toolbar > .toolbar > button > i::before
{
    color:#fff;
}

div.top-toolbar > form
{
       border: solid  1px #5e87eb;
    border-radius: 10px;
    padding: 5px;
}

div.top-toolbar > form > input
{
    background: transparent;
    border: none;
    padding: 0 10px;
}

div.top-toolbar > form > button
{
    background: transparent;
    border: none;
    font-size: 16px;
    color:#ccf
}

 

/*#region body > header */

header {
    border-bottom: solid 1px #f1f1f1;
}


header a.navbar-brand {
}

header a.navbar-brand > img {
    width: 48px;
}

/*#endregion */

/*#region header .search */
body > header {
}

header .search {
    display: grid;
    grid-template-columns: auto max-content;
    border: solid 1px rgba(0,0,0,.5);
    margin: 0 10px;
    border-radius: 5px;
    padding: 5px;
    background: white;
}

header .search > button{
    background: transparent;
    border:none;
}

header .search > input{
    background: transparent;
    border:none;
}

/*#endregion */

/*#region body > footer */

body > footer {
    color: rgb(236, 236, 236);
    background: #0e1326;
    margin-top: 15px;
}

body > footer a {
    color: rgb(236, 236, 236);
}


body > footer > content {
    background: #1c1c23;
    position: relative;
    z-index: 1;
    background-image: url(/images/banner-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    padding: 80px 0;
}

body > footer > content::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: -1;
    background-color: #5e87eb;
    background-image: linear-gradient(-135deg, #611bdd 0%, #5e87eb 100%);
}

body > footer content > div {
    display: grid;
    grid-template-columns: 30% 15% 15% auto;
    align-items: start;
    text-align: center;
    gap: 50px;
}


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

body > footer section > h3 {
    border-bottom: solid 1px #fff;
    text-align: right;
    padding: 10px;
    font-size: 18px;
}

body > footer ul.links {
    padding: 0 10px;
    list-style-type: none;
    text-align: right;
}

body > footer ul.links > li > a {
    padding: 5px;
    display: block;
}


body > footer ul.socials {
    list-style-type: none;
}

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

body > footer ul.socials > li > a {
    display: inline-block;
    height: 38px;
    width: 38px;
    line-height: 38px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-size: 18px;
    color: #5e87eb;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-align: center;
}

body > footer ul.socials > li:hover > a {
    background-color: #5e87eb;
    color: #ffffff;
    border: 1px solid #5e87eb;
}

body > footer ul.address {
    list-style-type: none;
    padding: 0 5px;
}

body > footer ul.address > li {
    font-weight: bolder;
    padding: 5px;
}

body > footer ul.address > li > label::after {
    content: " : ";
}

body > footer ul.address > li > a:hover {
    color: #fff;
}

body > footer div.newsletter {
    display: grid;
    grid-template-columns: auto auto;
}

body > footer div.newsletter > input {
    display: block;
    width: 100%;
    background-color: #ffffff;
    border: none;
    height: 50px;
    padding-right: 25px;
    border-radius: 0 5px 5px 0;
    outline: 0;
    color: #505060;
}

body > footer div.newsletter > button {
    background-color: #5e87eb;
    color: #ffffff;
    border: none;
    padding: 0 10px;
    border-radius: 5px 0px 0px 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    line-height: 50px;
    font-size: 15px;
    position: relative;
}


body > footer div.newsletter > button::after {
    content: " ";
    position: absolute;
    background: #3e57d0;
    opacity: 0.3;
    width: 0;
    height: 100%;
    display: block;
    border-radius: 5px 0px 0px 5px;
    left: 0px;
    top: 0px;
    visibility: hidden;
    transition: .3s;
}

body > footer div.newsletter > button:hover::after {
    width: 100%;
    visibility: visible;
}

body > footer > div {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 20px 0 0 0 !important;
}

body > footer > div > p:last-child {
    text-align: left;
}

/*#endregion */

/*#region responsive */

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

/* Tablet */
@media (min-width: 576px) and (max-width: 768px) {
    /*#region body > footer */

    body > footer > content {
           padding: 10px 0;
    }
 
    body > footer content > div {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
 

    body > footer section > h3 {
        text-align: center;
        font-size: 16px;
    }

    /*#endregion */
}

/* Phone */
@media (max-width: 576px) {
    /*#region body > footer */
    body > footer > content {
        padding: 10px 0;
    }

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

    body > footer section > h3 {
        text-align: center;
        font-size: 16px;
    }

    /*#endregion */
}

/*#endregion */










/* ================================================================= */

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

/*#region responsive */

/* Monitor */
@media (min-width: 768px) and (max-width: 992px) {
	header .search {
		width:100%;
	}
}

/* Tablet */
@media (min-width: 576px) and (max-width: 768px) {
	header .search {
		width:100%;
	}	
}

/* Phone */
@media (max-width: 576px) {
	header .search {
		width:100%;
	}	
}

/*#endregion */
