

/*right side button for contact us */
.icop-bar {
    position: fixed;
    right: 0;
    top: 45%;
    z-index:10;
    margin-right: -58px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: rotate(270deg);
}

.icop-bar a:before{
	  content: "\f102";
	  padding-right:5px;
    font-family: fontawesome;
	display:inline-block;
}
@media screen and (max-width: 600px) {
 .icop-bar {
    top: auto;
    transform: rotate(360deg);
    margin-right: 0px;
    position:fixed;
    bottom:0;
 /*  position: fixed;
  top: 94%;
  right:0;
  margin-left:auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transform: rotate(0deg);*/
  }
}


.icop-bar a {
    display: block;
    border-top-left-radius: 5px;
    text-align: center;
    border-top-right-radius: 5px;
    padding: 5px 10px 7px 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    text-decoration:none;
    font-weight:normal;
}


.flip {
  background: #e34700;
  /*background: repeating-linear-gradient(45deg, #e34700, transparent 100px);*/
    color: white!important;
    border: 1px solid #c2c2c2;
    font-weight: 600;
}
/* right button contact end*/

/* Modal popup on click open start*/
/* The moodel (background) */
.moodel {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 5rem; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* moodel Content */
.moodel-content {
  border-radius: 5px;
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 33%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
@media screen and (max-width: 600px) {
    
	.moodel-content {
		width: 90%;
	}	
}

