﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}
h5 {
color:gray;
}
.image-placeholder {
    background-color: #eee;
    display: flex;
    height: 100vh;
    width: 15%;
}
.notification{
    background-color: blue;
    position: relative;
    color:red;
}
.image-placeholder > h4 {
    align-self: center;
    text-align: center;
    width: 100%;
}
    .dark-mode {
    background-color: black;
    color: white;
}
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}
body {
    margin-bottom: 60px;
    background-color: #E0E0E0;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  height: 60px;
  line-height: 60px;
}

.front-book-sale-container {
display:flex;
flex-direction:row;
justify-content:space-evenly;
}
.btn-google:hover {
    background: #b22222;
    color: #fff;
}

.btn-facebook:hover {
    background: #2b4db1;
    color: #fff;
}

.btn-twitter:hover {
    background: #007bb6;
    color: #fff;
}

.btn-microsoft:hover {
    background: #00618E;
    color: #fff;
}

.btn-facebook {
    background: #305c99;
    color: #fff;
}

.btn-twitter {
    background: #00cdff;
    color: #fff;
}

.btn-google {
    background: #d24228;
    color: #fff;
}

.btn-linkedin {
    background: #007bb6;
    color: #fff;
}

.btn-microsoft {
    background: #007bb6;
    color: #fff;
}

button{
    font-size: 18px;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    background-color: #fff;
    border: 0;/*
    border-radius:100%;*/
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    color: #fff;
    background-size: 300% 300%;
    color: white;
    cursor: pointer;

}
.site-background {
background-color:lightgrey;
}
pre {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 3px solid #f36d33;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    display: block;
    word-wrap: break-word;
    padding-left: 2%;
    padding-bottom: 2%;
}
.button-anim {
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    background: linear-gradient(to right,#64a408, #16BFFD);
    color: #fff;
}
.animate-bg {
    background-color: red;
    border: 0;
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    background: linear-gradient(to right, #CB3066, #16BFFD);
    color: #fff;
    background-size: 300% 300%;
}

.animate-bg-buy {
    background-color: yellow;
    border: 0;
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    background: linear-gradient(to right, yellow, orange);
    background-size: 300% 300%;
}

.animate-bg-gray {
    background-color: white;
    border: 0;
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    background: linear-gradient(to right, lightgray, white);
    color: gray;
    background-size: 300% 300%;
}
#backShadow {
    animation: bounce 2.2s ease infinite alternate;
    color: aquamarine;
}
#clothes {
    background-color: red;
    border: 0;
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    background: linear-gradient(to right, #CB3066, #16BFFD);
    color: #fff;
    background-size: 300% 300%;
    animation: btn1 2.1s ease infinite;
}
#WhiteDots {
    background-color: red;
    border: 0;
    outline: 0;
    box-shadow: 0 5px 10px 0 rgba(205, 209, 215, 0.8);
    background: linear-gradient(to right, #CB3066, #16BFFD);
    color: #fff;
    background-size: 300% 300%;
    animation: btn1 2.1s ease infinite;
}

@keyframes btn1 {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }}

@keyframes bounce {

    from {transform: rotateZ(0deg);}
    to{transform:rotateZ(20deg);}
}
.cookiewarning {
    overflow: hidden;
    -webkit-transition: slideOutDown 0.8s;
    -moz-transition: slideOutDown 0.8s;
    transition: slideOutDown 0.8s;
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    color: black;
    overflow-x: hidden;
    padding-right: 20px;
   
  
}

.ui-menu-item-wrapper {
    color: gray;
    background-color: white;
    padding: 2px;
}

.ui-menu {
    padding: 2%;
    border-radius: 10px 10px 10px 10px;
   
    
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: lightgray !important;
    font-weight: bold !important;
    color: black !important;
   
}


