        #sticky-popup {
		width: 100%;
		padding: 20px 0px 20px 0px;
		display: none;
		bottom: 0%;
		position: fixed;
	    	text-align: center;
		background-color: white;
		box-shadow: #d5d7d8 0px 0px 10px;
		z-index: 10000;
	    }

	    .sticky-popup-text {
		font-size: 16px;
		font-weight: 300;
	    	font-family: Manrope;
	    	line-height: 170%;
		cursor: default;
		width: 80%;
		float: left;
	    }

	    .sticky-popup-outer-container {
		width: 100%;
	    }

	    .sticky-popup-inner-container {
		width: 100%;
		max-width: 1280px;
		padding: 0 20px;
		margin: 0 auto;
	    }


	    .acknowledge-button-container {
		width: 100%;
	    }
	
	    .acknowledge-button {
		width: 15%;
		padding: 13px;
    		font-size: 14.8px;
			font-style: normal;
    		font-family: Manrope;
		color: white;
		cursor: pointer;
		border-radius: 30px;
		background-color: #0076ad;
		transition: all 0.25s ease;
		text-align: center;
		float: right;
	    }

	    .acknowledge-button:hover {
		
		background-color: #004870;
	    }

		@media all and (max-width:768px){
			.sticky-popup-text {
				float: none !important;
				width: 100%;
			}
			.acknowledge-button {
				width: 50%;
				float: none;
				margin: 20px auto !important;
			}
			#sticky-popup {
				padding: 20px 0px 0px 0px;
			}
		}