body.modal-open {
    overflow: hidden;
    position: fixed;
}

.cart {
    position: fixed;
    right: 1rem;
    top: 4.7rem;
    width: 10.5rem;
    height: 2.5rem;
    text-align: center;
    color: yellow;
    background: rgba(90, 92, 105, .5);
    line-height: 25px;
    z-index: 99;
}

.com {
    position: fixed;
    right: 17rem;
    bottom: 1rem;
    width: 6rem;
    height: 3.5rem;
    text-align: center;
    color: yellow;
    background: rgba(90, 92, 105, .5);
    line-height: 25px;
    z-index: 99;
    border-color: red;
    border-style: solid;
}

.points {
    position: fixed;
    right: 10.5rem;
    bottom: 1rem;
    width: 6rem;
    height: 3.5rem;
    text-align: center;
    color: yellow;
    background: rgba(90, 92, 105, .5);
    line-height: 25px;
    z-index: 99;
    border-color: red;
    border-style: solid;
}

.sum {
    position: fixed;
    right: 4rem;
    bottom: 1rem;
    width: 6rem;
    height: 3.5rem;
    text-align: center;
    color: yellow;
    background: rgba(90, 92, 105, .5);
    line-height: 25px;
    z-index: 99;
    border-color: red;
    border-style: solid;
}

body {
    background-color: #ebeae8;
    font-family: Sarabun;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: white;
}

@media screen and (max-width: 1000px) {
    #logo {
        width: 200px;
    }
}

mark {
    color: red;
    background-color: yellow;
}

#loadingicon {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-top: -20px;
    margin-left: -20px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1104;
}

#loadingicon div {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 480px;
    background-image: url('/assets/img/loading.gif');
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
    background: #f2f2f2;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: 3px solid #00B4CC;
    border-right: none;
    padding: 5px;
    height: 20px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
}

.searchTerm:focus {
    color: #00B4CC;
}

.searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid #00B4CC;
    background: #00B4CC;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}


/*Resize the wrap to see the search bar change!*/

.wrap {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search {
    overflow: hidden;
    clear: both;
    padding: 10px 15px;
    margin: 25px 0 25px;
    border: 1px solid #DEDEDE;
    background-color: #F7F7F7;
    width: 100%;
}