/**
*****
Front site style
*****
**/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #f0f2f5;

}

/* Header section */

header .site-logo{
    padding: 10px;
    background-color: #fff;
}
header .site-logo img{
    width: 250px;
}

header .support{
    background-color: #C07F00;
    color: #fff;
}

/* End Header section */

/**
 Product Single page
 ******/


/*--Start gallery--*/

.overly-gallery {
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left: 0;
    padding: 20px;
    background-color: rgba( 31, 25, 25, 0.4);
}
.cover >i {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    transition: .4s;
    display: none;
}

.cover >i:hover{
    opacity: 1
}

.gallery {
    max-width: 600px;
    margin: auto;
    border: 1px solid #eee;
    padding: 3px;
    background-color: #fff;
    position: relative;
}

.gallery img{
    max-width: 100%;
}

.gallery .main-img{
   max-height: 490px;
}

.gallery .thumnails{
    overflow: hidden;
}

.gallery .thumnails img{
   
    border: 2px solid #888;
    padding: 2px;
    cursor: pointer;
    opacity: .5
}

.gallery .thumnails img:not(:last-child){
    margin-right: 0.5%
}

.gallery .thumnails .active{
    border: 2px solid #920202;
    opacity: 1;
    transition: all .3s ease-in-out
}

.gallery i{
    position: absolute;
    top: 200px;
    color: #636363;
    background-color: #fff;
    padding: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    z-index: 666;
}

.gallery .icon1{
    right: 5px;
}
.gallery .icon2{
    left: 5px;
}
/*--End gallery--*/


.r-price{
    color: #e94669;
}
.s-price{
    font-size: 20px;
    color: #9b9b9b;
}

.form-border{
    border: 3px dotted #C07F00 ;
}
/* Quantity btn */

.qty {
    width: 50px;
    height: 30px;
    text-align: center;
    font-weight: bold;
    color: #e90000;
    border: none;
}
input.qtyplus { 
    font-weight: bold;
    width: 40px;
}
input.qtyminus {
    font-weight: bold;
    width: 40px;
}

.bad-request{
    display: none;
}
.trust{
    max-width: 635px;
}

.fa-star{
    color: #F2921D;
}
/* Start Silider ***/
.slider{
    background: #efefef;
    height: 300px;
    max-width: 930px;
    margin: 20px auto;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.slider .slide{
    float: left;
    width: 310px;
    height: 300px;
}
.slider img{
    width: 310px;
    height: 300px;
}

/* End Silider *****/

.content{
    background-color: #fff;
}

/* Checkout page */

.order-info{
    width: 600px;
    margin: 30px auto;
}

/* Phone icone */

.phone-icon{
    position: fixed;
    width: 40px;
    height: 40px;
    font-size: 28px;
    padding-right: 8px;
    bottom: 20px;
    right: 50px;
    z-index: 555;
    background-color: #48c456;
    color: #fff;
    animation: shake 350ms 2 linear;
    animation-iteration-count: infinite; 
}

/* Form */

.checkout-btn {
	position: relative;
	overflow: hidden;
}

.checkout-btn span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #991200, #ffc107);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.checkout-btn span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #991200, #ffc107);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.checkout-btn span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #991200, #ffc107);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.checkout-btn span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #991200, #ffc107);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}


/*Phone icon animation*/
@keyframes shake {
    0% {
      transform: translate(-8, 0);
    }
   
    50% {
      transform: translate(8px,0);
    }
    100% {
      transform: translate(0, 0);
    }
  }

@media (max-width: 992px) { 

    .phone-icon{
        padding-right: 7px;
    }

}

/* footer page */

footer{
    background-color: #fff;
}