/*  _cc-button.scss
CC button Styles
 */

button.js-modal.btn.btn-small {
  /*background: #f89828;*/
  transition-duration: 0.4s;
  height: 35px;
  padding: 0 8px;
  margin: 10px 10px 0 0;
  font-size: 13px;
  color: white;
  background-color: #033f73; 
}



@media screen and (max-width: 1024px) {
	button.js-modal.btn.btn-small {
		margin: 10px 0;
		width: 100%;
	}
}

/*Used to hide clone button in Desktop */
@media screen and (min-width: 1025px) {
	.nav-mainbar button.js-modal {
		color: black;
		display: none;
	}
}



button.js-modal.btn.btn-small:hover{
	background-color: #033f73; 
}

button.js-modal.btn.btn-small:after {
/* left:-4px;
 top:-9px;
*/ 
	background-image: url('images/icon-cta_white.png');
}

