/* @import url(https://fonts.googleapis.com/css?family=Nunito:400,700); */
/* Bulma Utilities */
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

#wrapper {
    flex: 1;
}

.img {
    height: 24px;
}

.footer {
    color: #ffffff;
    background-color: #515254;
    left: 0;
    bottom: 0;
    height: 60px;
    width: 100%;
    padding: 1.5rem 1.5rem 2rem;
}

.search-type {
    padding-bottom: 10px;
}

#autoComplete::placeholder {
    color: rgba(255, 122, 122, 0.5);
    transition: all 0.3s ease;
    -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:hover::placeholder {
    color: rgba(255, 122, 122, 0.6);
    transition: all 0.3s ease;
    -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus::placeholder {
    padding: 0.1rem 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 122, 122, 0.4);
}

#autoComplete:focus::selection {
    background-color: rgba(255, 122, 122, 0.15);
}

#autoComplete::selection {
    background-color: rgba(255, 122, 122, 0.15);
}

#autoComplete:hover {
    color: rgba(255, 122, 122, 0.8);
    transition: all 0.3s ease;
    -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus {
    color: rgba(255, 122, 122, 1);
    border: 0.06rem solid rgba(81, 82, 84, 0.8);
}

#autoComplete_list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    margin-top: 0.5rem;
    border-radius: 0.6rem;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
    border: 1px solid rgba(33, 33, 33, 0.07);
    z-index: 1000;
    outline: none;
}

.autoComplete_result {
    margin: 0.3rem;
    padding: 0.3rem 0.5rem;
    list-style: none;
    text-align: left;
    font-size: 1rem;
    color: #212121;
    transition: all 0.1s ease-in-out;
    border-radius: 0.35rem;
    background-color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}

    .autoComplete_result::selection {
        color: rgba(#ffffff, 0);
        background-color: rgba(#ffffff, 0);
    }

    .autoComplete_result:hover {
        cursor: pointer;
        background-color: rgba(255, 122, 122, 0.15);
    }

.autoComplete_highlighted {
    color: rgba(255, 122, 122, 1);
    font-weight: bold;
}

    .autoComplete_highlighted::selection {
        color: rgba(#ffffff, 0);
        background-color: rgba(#ffffff, 0);
    }

.autoComplete_selected {
    cursor: pointer;
    background-color: rgba(255, 122, 122, 0.15);
}

@media only screen and (max-width: 600px) {
    .autoComplete_wrapper {
        width: 320px;
    }

    #autoComplete {
        width: 18rem;
        background-size: 1.6rem;
        background-position: left 1.1rem top 0.75rem;
    }

    #autoComplete_list {
        margin: 10px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #autoComplete {
        border-width: 1px;
    }
}

@-moz-document url-prefix() {
    #autoComplete {
        background-size: 1.2rem;
        background-origin: border-box;
        border-width: 1px;
        background-position: left 1.1rem top 0.8rem;
    }
}

/**Login Style*/
.hero {
    height: 100vh;
    position: relative;
}

.notification {
    padding-top: 20px;
    padding-bottom: 30px;
}

.button {
    margin-top: 10px;
}

.fav-click {
    pointer-events: all;
    cursor: pointer
}

.infoBox {
    padding: 0.75em 1em;
    border-color: darkblue;
}

.page-title {
    color: #ffffff;
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    padding-left: 20px;
}

.panel-box {
    display: none;
    box-shadow: 1em 0.5em 1em -0.125em rgba(81, 82, 84, 0.5), 1px 1px 1px 1px rgba(81, 82, 84, 1);
}

.noresult {
    height: 80px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
/**Property Style*/
.item_title {
    font-weight: bold;
}

.item_data {
    font-weight: normal;
}

.modal-z {
    z-index: 9999;
}

.button.is-info {
    background-color: #057DBC
}

    .button.is-info[disabled] {
        background-color: #057DBC
    }

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #057DBC; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Overrides */
.section {
    padding: 1rem .5rem;
}

/*
.splide {
  padding: 1em;
}

.splide__arrow--prev {
  left: -0.25em;
}

.splide__arrow--next {
  right: -0.25em;
}
*/

.modal-card-foot-small,
.modal-card-head-small {
    padding: 15px;
    justify-content: flex-end;
}

.button-ok {
    padding: 5px 20px;
    height: 2em;
}

.productMessage {
    margin-left: 10px;    
    font-size: 1.1em;
}