.hidden{
	display:none;
}

@media only screen and (max-width: 768px){
    .hidden-sm{
		display:none;
	}
}

.old-price{

    color: #383838;
    font-size: 14px;
}
.old-price-1{
	text-decoration: line-through;
}
.old-price sup{
	text-decoration: none!important;
}
.old-price-2{
	margin-left: 10px;
    padding: 5px;
    background: #FBE8E8;
    color: #ff000d;
    font-weight: 600!important;
    border-radius: 4px;
}

/* loader */
.rbh-loader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rbh-loader {
    position: relative;
    width: 140px;
    height: 140px;
}

.rbh-loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.rbh-loader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    margin: 0;
    border-radius: 50%;
    color: #f1c88d;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    transform: translate(-50%, -50%);
    animation: load6 1.7s infinite ease;
    z-index: 1;
}

@keyframes load6 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        box-shadow: 0 -0.83em 0 -0.4em,
        0 -0.83em 0 -0.42em,
        0 -0.83em 0 -0.44em,
        0 -0.83em 0 -0.46em,
        0 -0.83em 0 -0.477em;
    }
    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em,
        0 -0.83em 0 -0.42em,
        0 -0.83em 0 -0.44em,
        0 -0.83em 0 -0.46em,
        0 -0.83em 0 -0.477em;
    }
    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em,
        -0.087em -0.825em 0 -0.42em,
        -0.173em -0.812em 0 -0.44em,
        -0.256em -0.789em 0 -0.46em,
        -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em,
        -0.338em -0.758em 0 -0.42em,
        -0.555em -0.617em 0 -0.44em,
        -0.671em -0.488em 0 -0.46em,
        -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em,
        -0.377em -0.74em 0 -0.42em,
        -0.645em -0.522em 0 -0.44em,
        -0.775em -0.297em 0 -0.46em,
        -0.82em -0.09em 0 -0.477em;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        box-shadow: 0 -0.83em 0 -0.4em,
        0 -0.83em 0 -0.42em,
        0 -0.83em 0 -0.44em,
        0 -0.83em 0 -0.46em,
        0 -0.83em 0 -0.477em;
    }
}