.feedback {

  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  color: #eeeeee;
  cursor: pointer;
  display: inline-block;
  font-family: myfontPara;
  font-size: 20px;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
}

@keyframes glowing {
  0% {
    background-color: red;
    box-shadow: 0 0 5px red;
  }

  50% {
    background-color: black;
    box-shadow: 0 0 20px black;
    color: white;
  }

  100% {
    background-color: red;
    box-shadow: 0 0 5px red;
  }
}

.feedback {
  animation: glowing 1300ms infinite;
}


.feedbacks {
  animation: glowing 1300ms infinite;
}

/* #mybutton {
      position: fixed;
      bottom: -4px;
      right: 10px;

    } */

#mybutton {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 9;
}
#mybuttonWtsup {
  position: fixed;
  top: 450px;
  right: 5px;
}

/* .Blogpagging {
  animation: wiggle 2s linear infinite;
} */

/* Keyframes */
@keyframes wiggle {

  0%,
  7% {
    transform: rotateZ(0);
  }

  15% {
    transform: rotateZ(-15deg);
  }

  20% {
    transform: rotateZ(10deg);
  }

  25% {
    transform: rotateZ(-10deg);
  }

  30% {
    transform: rotateZ(6deg);
  }

  35% {
    transform: rotateZ(-4deg);
  }

  40%,
  100% {
    transform: rotateZ(0);
  }
}
.WtsupButton {
  position: relative;
 
}
.RequestAQuoteButton {
  position: relative;
  /* left: calc(50% - 3em); */
  /* top: calc(50% - 2em); */
  background: #ae0202;
  background: linear-gradient(top, #555, #333);
  border: none;
  color: #fff;
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 14PX;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 15px 30px 15px 30px;
  transform-origin: 50% 5em;
}
.RequestAQuoteButton:hover{
  background-color: darkblue;
  
}
.contactproduct {
  position: relative;
  /* left: calc(50% - 3em); */
  /* top: calc(50% - 2em); */
  
  background: darkblue;
  background: linear-gradient(top, #555, #333);
  border: none;
  
  color: #fff;
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 12PX;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 8px 30px 8px 30px;
  transform-origin: 50% 5em;
}
.contactproduct:hover{
  background-color: red;
  
}
.Blogpagging {
  position: relative;
  /* left: calc(50% - 3em); */
  /* top: calc(50% - 2em); */
  height: 12em;
  width: 2em;
  background: darkblue;
  background: linear-gradient(top, #555, #333);
  border: none;
  border-top: 4px solid red;
  border-radius: 0 0 0.2em 0.2em;
  color: #fff;
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 15PX;
  padding:10px;
  transform-origin: 50% 5em;
}
.Blogpagging:hover{
  background-color: red;
  border-top: 4px solid darkblue;
}
.Blogpaggingactive {
  position: relative;
  /* left: calc(50% - 3em); */
  /* top: calc(50% - 2em); */
  height: 2em;
  width: 3em;
  background: red;
  background: linear-gradient(top, #555, #333);
  border: none;
  border-top: 4px solid black;
  border-radius: 0 0 0.2em 0.2em;
  color: #fff;
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 1em;
  transform-origin: 50% 5em;
}

.error {
  color: red;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

/* button.selected {
  background-color: black;
  color: white;
} */


/* Bolg R Icon */
.wrapper {
  position: relative;
  margin-top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  height: auto;
}

.Bbutton {
  width: 40px;
  height: 40px;
  background: linear-gradient(to left top, darkblue 50%, black 50%);
  border-style: none;
  color: #fff;
  font-size: 23px;
  letter-spacing: 3px;
  font-family: 'Lato';
  font-weight: 600;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 0px;
  overflow: hidden;
  transition: all .5s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
}

.Bbutton span {
  position: absolute;
  display: block;
}

.Bbutton span:nth-child(1) {
  height: 3px;
  width: 200px;
  top: 0px;
  left: -200px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #f6e58d);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}

@keyframes span1 {
  0% {
    left: -200px
  }

  100% {
    left: 200px;
  }
}

.Bbutton span:nth-child(2) {
  height: 70px;
  width: 3px;
  top: -70px;
  right: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #f6e58d);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}

@keyframes span2 {
  0% {
    top: -70px;
  }

  100% {
    top: 70px;
  }
}

.Bbutton span:nth-child(3) {
  height: 3px;
  width: 200px;
  right: -200px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #f6e58d);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}

@keyframes span3 {
  0% {
    right: -200px;
  }

  100% {
    right: 200px;
  }
}

.Bbutton span:nth-child(4) {
  height: 70px;
  width: 3px;
  bottom: -70px;
  left: 0px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #f6e58d);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}

@keyframes span4 {
  0% {
    bottom: -70px;
  }

  100% {
    bottom: 70px;
  }
}

.Bbutton:hover {
  transition: all .5s;
  transform: rotate(-3deg) scale(1.1);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, .4);
}

.Bbutton:hover span {
  animation-play-state: paused;
}


 
.custom-btn {
  width: 130px;
  height: 30px;
  color: #fff;
  /* border-radius: 5px; */
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

    /* 5 */
.btn-5 {
  width: 80px;
  
  /* line-height: 42px; */
  padding: 0;
  border: none;
  background: red;
background: red;
margin-bottom: 8px;
}
.btn-5:hover {
  color: #f0094a;
  background: transparent;
   box-shadow:none;
}
.btn-5:before,
.btn-5:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #f0094a;
  box-shadow:
   -1px -1px 5px 0px #fff,
   7px 7px 20px 0px #0003,
   4px 4px 5px 0px #0002;
  transition:400ms ease all;
}
.btn-5:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btn-5:hover:before,
.btn-5:hover:after{
  width:100%;
  transition:800ms ease all;
}
.submithover :hover{
  background-color: red;
}
.submimail{
  background-color:darkblue;
  border: darkblue;
  font-family: myfontPara;
  margin-top: 20px;
  font-weight: bold;
  font-size: 19px;
}
