@font-face {
    font-family: SilverSouthSerif;
    src: url(../fonts/SilverSouthSerif.ttf);
}

.font-silver {
    font-family: 'SilverSouthSerif' !important;
}


/* navbar */

#second_desktop #storeCategories #desktop_category>center .btn-group #cat_name {
    padding: 0;
}

#desktop_category>center {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

#storeCategories #desktop_category>center>.btn-group {
    margin: 0 1.8%;
}

#mobile-logo {
    position: fixed;
    right: 0;
    left: 0;
    width: 45vw;
    margin: 0 auto;
}


/* wishlist */

.wishlist-icon {
    fill: none;
    stroke: black
}

.wishlist-icon.active {
    fill: black
}

.product__wishlist {
    border: none;
    background: none;
    outline: none
}

#products .thumbnail {
    padding: 0 !important;
    margin: 0 !important;
}

.product.product-grid {
    padding: 10px 15px;
    margin-bottom: 20px;
}

.price-wishlist {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
}


/* sub categories */

.panel-sidebar .panel-heading a.active {
    font-weight: 800;
    text-decoration: underline;
    color: black;
}

.promo-label {
    background: rgba(255, 255, 255, 0.65);
    position: absolute;
    bottom: 0;
    width: 100%;
    font-weight: 600;
    color: #BD2E2B;
    padding: 10px 0;
    cursor: default;
}

.selectable-text {
    cursor: text;
    -webkit-user-select: all;  /* Chrome 49+ */
    -moz-user-select: all;     /* Firefox 43+ */
    -ms-user-select: all;      /* No support yet */
    user-select: all;          /* Likely future */   
}


/* New label */

@media (max-width: 768px) {
    div.product-new-icon {
        width: auto;
        height: auto;
        line-height: 100%;
        padding: 4px 8px;
    }
}


/** Checkout */

.payment_methods_logos i {
    margin: 0 4px;
}
.master-card_icon, .visa_icon, .mada_icon {
    display: inline-block;
    background: url('https://static2.thelevele.com/image/data/2018/checkout/payment-icons-.png') no-repeat;   
}
.master-card_icon {
    width: 47px;
    height: 30px;
    background-position: -59px -94px;
}
.visa_icon {
    width: 50px;
    height: 26px;
    background-position: -55px -29px;
}
.mada_icon {
    width: 60px;
    height: 26px;
    background-position: -5px -314px;
}
.payment_method_title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login-box .form-signin {
    padding: 0;
    background-color: transparent;
}

.left-time-login-code {
    margin-bottom: 10px;
}


/* Product page*/

#productDetailsText_first {
    display: flex;
    flex-direction: column;
}

ul.product-attributes {
    padding: 0;
}


/* location loading spinnter*/

.location-loading-container, .location-error-container {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

.loading-content {
    max-width: 300px;
    background: white;
    padding: 20px 40px;
    border-radius: 4px;
    margin-top: 10px;
}

#gps-point {
    margin-bottom: 30px;
    margin-top: 30px;
}

#gps-point div {
    width: 20px;
    height: 20px;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 50%;
    background: #5dcce7;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-animation: r5 1s 0s ease-out infinite;
    -moz-animation: r5 1s 0s ease-out infinite;
    animation: r5 1s 0s ease-out infinite;
}

@-webkit-keyframes r5 {
    0% {
        box-shadow: 0 0 8px 6px rgba(93, 204, 231, .5), 0 0 0px 0px transparent, 0 0 0px 0px rgba(93, 204, 231, .7);
    }
    10% {
        transform: scale(1, 1);
        box-shadow: 0 0 8px 6px rgba(93, 204, 231, .5), 0 0 12px 10px transparent, 0 0 12px 14px rgba(93, 204, 231, .7);
    }
    100% {
        box-shadow: 0 0 8px 6px rgba(26, 140, 255, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(26, 140, 255, 0);
    }
}

@-moz-keyframes r5 {
    0% {
        box-shadow: 0 0 8px 6px rgb(93, 204, 231), 0 0 0px 0px transparent, 0 0 0px 0px rgb(93, 204, 231);
    }
    10% {
        box-shadow: 0 0 8px 6px rgb(93, 204, 231), 0 0 12px 10px transparent, 0 0 12px 14px rgb(93, 204, 231);
    }
    100% {
        box-shadow: 0 0 8px 6px rgba(26, 140, 255, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(26, 140, 255, 0);
    }
}

@keyframes r5 {
    0% {
        box-shadow: 0 0 8px 6px rgb(93, 204, 231), 0 0 0px 0px transparent, 0 0 0px 0px rgb(93, 204, 231);
    }
    10% {
        box-shadow: 0 0 8px 6px rgb(93, 204, 231), 0 0 12px 10px transparent, 0 0 12px 14px rgb(93, 204, 231);
    }
    100% {
        box-shadow: 0 0 8px 6px rgba(26, 140, 255, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(26, 140, 255, 0);
    }
}