/* texicare-plugin.css */

.texicare-container {
    margin-bottom: 20px;
}

.texicare-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index:9999;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {

    background-color: #fff;
    margin: 10% auto;

    padding: 20px;
    max-width: 1000px; /* Widen the overall results modal */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
	padding-top:75px !important;
	font-size:18px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


#texicare-input {
width:80%;	
}


.texicare-button{
	border-radius:0px !important;
	font-weight:300 !important;
	text-transform :Capitalize !important;
	
	}


/* Create two equal columns that floats next to each other */
.col {
  line-height:0.5 !important;
  float: left;
  width: 50%;
  padding: 10px;
}

.col span{
	font-weight:900 !important; 
	color:#656669;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;

}

.texicare-modal-button{
	float:center;
	background-color: #fff !important;
	color:#656669 !important;
	text-transform: lowercase !important;
	border: 2px solid #000 !important;
}

.texicare-modal-button:hover {
    background-color: #ed5929 !important;
    color: #fff !important;
    border: 2px solid #ed5929 !important;
}



.col button {
	text-transform: none !important;	
}

.additional-info{
	padding:10px;
	color:#656669 !important;
}

::placeholder{
	color:#3B3B3B;
}


/* Mobile Responsive Stuff */

	.mobile-results{
  		display:none ;
	}

@media only screen and (max-width: 768px) {
	.mobile-results{
  		display:block !important;
	}
	
	.non-mobile-results{
  		display:none !important;
	}
		
	.modal-content {
		top:150px ;
	}
	
	.texicare-modal-button{
		vertical-align: text-bottom !important;
		
	}
	
	
}


