﻿
div.send-message-button
{
   
   padding-top:20px;
   padding-bottom:20px;
   margin-left:5px;
   clear: both;
}

.form-contact-box
{
    clear: both; 
}

.text-box
{
    width: 100%;
    padding: 10px;
    
    margin-bottom:7px;
    display: inline-block;
    border-radius: 5px;
    box-sizing: border-box;
    border: 2px solid #E2D2E5;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none;
	transition: box-shadow 100ms;
	-webkit-transition: box-shadow 100ms;
	-moz-transition: box-shadow 100ms;
}  

.dropdownListItems
{
    padding:10px;
    
    margin-bottom:7px;
	width: 100%;
	display: inline-block;
	box-sizing: border-box;
	border: 2px solid #E2D2E5;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
	border-radius: 5px;
	transition: box-shadow 100ms;
	-webkit-transition: box-shadow 100ms;
	-moz-transition: box-shadow 100ms;
	background: url('../images/select-arrow.png') right no-repeat;
    background-color:#fff;
    appearance: none; /*remove browsers vendors css prefixes*/
    -webkit-appearance: none; /*remove chrome/opera/safari browser css prefix*/
    -moz-appearance: none; /*remove mozilla browser css prefix*/
    -ms-appearance: none; /*remove internet explorer browser css prefix*/
    
}

/*remove the default dropdown arrow on IE10+ browser*/
.dropdownListItems::-ms-expand
{
   display: none;
}

@media all and (min-width: 768px)
{
    
    .text-box
    {
        width: 80%;
    }

    .dropdownListItems
    {
        width: 50%;
    }

}

.text-box:focus,
.text-box:active,
.text-box:hover,
.dropdownListItems:focus,
.dropdownListItems:active,
.dropdownListItems:hover
{

	box-shadow: 0px -1px 0px rgba(0,0,0,0.1),
				0px 0px 2px 1px rgba(146, 39, 143, 0.2);
}

.RequiredFieldValidator
{
    padding: 10px;
    margin: 0px;
    background-color: white;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 78%;
}

.spacer
{
    margin-top:-15px;
}


@media all and (max-width: 416px)
{
     
.RequiredFieldValidator
    {
        width: 90%;
    }
    
.spacer
    {
        margin-top: 10px;
    }
    
      
}



