#loginModal,
#couponModal,
#giftModal  {
	.close-icon {
		position: absolute;
        left:auto;
        right: 40px;
        top: 40px;

	    @include breakpoint(small only) {
	        right: 30px;
	        top: 30px;
	    }   		
	}	

	.login-title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		  -ms-flex-align: center;
		      align-items: center;
		-webkit-box-pack: justify;
		  -ms-flex-pack: justify;
		      justify-content: space-between;
		-ms-flex-wrap: wrap;
		  flex-wrap: wrap;
		color: #2d2a2a;
		margin-bottom: 25px;
		padding-bottom: 10px;
		line-height: 1;
		border-bottom: 3px solid;		
	}

	p:not(.form-row) {
		font-size: 18px;
		line-height: 1.4;
		@include breakpoint(small only) {
			font-size: 16px;
		}
	}
}

.ywgc_enter_code {
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0px;	
}


#couponModal,
#giftModal {
	.coupon {
		position: relative;

		.button {
			position: absolute;
			top: 0;
			right: 0px;
			padding: 0;
			margin: 0;
			background: none !important;
			min-width: 0;
			width: 50px;
			font-size: 0 !important;
			height: 100%;
			z-index: 999;	
			border: none;

			&:before {
				display: none;
			}

			&:active,
			&:focus {
				outline: none;
				border: none;
			}					
		}
		
		#coupon_code,
		#giftcard_code {
		    padding: 17px 60px 16px 0;
		    min-width: 200px;
		    width: 100%;
		    height: 60px;
		    font-size: 16px;
		    display: block;
		    margin-right: 0px;
		    border-width: 1px;
		    border-style: dashed; 
		    padding-left: 60px; 
		    color: #000;
		    border-color: rgba(0,0,0,0.2);
		    transition: border-color .6s;

		    &:focus {
				border-color: rgba(0,0,0,1);
		    }
		}	

		&:before {
	    	position: absolute;
		    left: 14px;
		    top: 20px;
		    font-size: 24px;
		    font-weight: normal;
		    color: #000; 			
			@include barberry_icon('\ea1e');
		}

		&:after {
			content: '';
			opacity: 0;
			transition: opacity .6s;
		}

		&.focus {
			&:after {
				opacity: 1;
		    	position: absolute;
			    right: 16px;
			    top: 18px;
			    font-size: 24px;
			    font-weight: normal;
			    color: #000; 			
				@include barberry_icon('\ea25');				
			}
		}			
	}
}