/* Contact Form Basic Styles
========================================================*/
#contact-form {
  position: relative;
}
#contact-form label {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
#contact-form label + label {
  margin-top: 18px;
}
#contact-form label.message {
  width: 100%;
}
#contact-form fieldset {
  border: none;
}
/* Contact Form Input
========================================================*/
#contact-form input[type='text'] , #contact-form input[type='password']{
  background-color: #f2f2f2;
  border-radius: 0;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  outline: none;
  height: 68px;
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  -webkit-appearance: none;
  cursor: text;
}

#contact-form select {
    background-color: #f2f2f2;
    border-radius: 0;
    line-height: 25px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding: 13px 17px 7px 23px;
    color: #464646;
    outline: none;
    height: 68px;
    border: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    -webkit-appearance: none;
    cursor: pointer;

    background-image: linear-gradient(45deg, transparent 50%, #453562 50%), linear-gradient(135deg, #453562 50%, transparent 50%), linear-gradient(to right, #f2f2f2, #f2f2f2);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
  }

/* Contact Form Placeholder Styles 
========================================================*/
#contact-form ._placeholder {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  cursor: text;
}
#contact-form ._placeholder.focused {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
#contact-form ._placeholder.hidden {
  display: none;
}
#contact-form .file ._placeholder {
  display: none;
}
/* Contact Form Buttons
========================================================*/
#contact-form .btn-wrapper {
  margin-top: 36px;
}
/* Contact Form Textarea 
========================================================*/
#contact-form textarea {
  width: 100%;
  margin-top: 0;
  background-color: #f2f2f2;
  border-radius: 0;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  height: 153px !important;
  -webkit-appearance: none;
  overflow: auto;
}
/* Contact Form Error messages
========================================================*/
#contact-form .empty-message,
#contact-form .error-message {
  position: absolute;
  right: 3px;
  top: 2px;
  color: red;
  height: 0;
  overflow: hidden;
  font-size: 11px;
  -webkit-transition: 0.3s ease-in height;
  transition: 0.3s ease-in height;
  z-index: 99;
}
#contact-form .invalid .error-message,
#contact-form .empty .empty-message {
  height: 20px;
}
/* Contact Form Processing Box
========================================================*/
#contact-form .contact-form-loader {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 247, 247, 0.48) url('../images/form-loader.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 5%;
  opacity: 0;
}
#contact-form.processing .contact-form-loader {
  opacity: .7;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
/* Contact Form Modal
========================================================*/
.modal-open {
  overflow: hidden;
}
#contact-form .modal {
  letter-spacing: normal;
  display: none;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
#contact-form .modal h4 {
  color: #000;
  padding: 0;
  margin: 0;
  font: 700 34px/36px 'Comfortaa', sans-serif;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 20px;
  color: #534e47;
}
.modal-dialog {
  width: 600px;
  margin: 10px auto;
}
@media only screen and (max-width: 768px) {
  .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
  }
}
/* Contact Form Close icon
========================================================*/
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.customOption{
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
}

.customMultiple{
    height: 150px !important;
}

/*login-form*/
/* Contact Form Basic Styles
========================================================*/
#login-form {
  position: relative;
}
#login-form label {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
#login-form label + label {
  margin-top: 18px;
}
#login-form label.message {
  width: 100%;
}
#login-form fieldset {
  border: none;
}
/* Contact Form Input
========================================================*/
#login-form input[type='text'] , #login-form input[type='password']{
  background-color: #f2f2f2;
  border-radius: 0;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  outline: none;
  height: 68px;
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  -webkit-appearance: none;
  cursor: text;
}

#login-form select {
    background-color: #f2f2f2;
    border-radius: 0;
    line-height: 25px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding: 13px 17px 7px 23px;
    color: #464646;
    outline: none;
    height: 68px;
    border: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    -webkit-appearance: none;
    cursor: pointer;

    background-image: linear-gradient(45deg, transparent 50%, #453562 50%), linear-gradient(135deg, #453562 50%, transparent 50%), linear-gradient(to right, #f2f2f2, #f2f2f2);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
  }

/* Contact Form Placeholder Styles 
========================================================*/
#login-form ._placeholder {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  cursor: text;
}
#login-form ._placeholder.focused {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
#login-form ._placeholder.hidden {
  display: none;
}
#login-form .file ._placeholder {
  display: none;
}
/* Contact Form Buttons
========================================================*/
#login-form .btn-wrapper {
  margin-top: 36px;
}
/* Contact Form Textarea 
========================================================*/
#login-form textarea {
  width: 100%;
  margin-top: 0;
  background-color: #f2f2f2;
  border-radius: 0;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  height: 153px !important;
  -webkit-appearance: none;
  overflow: auto;
}
/* Contact Form Error messages
========================================================*/
#login-form .empty-message,
#login-form .error-message {
  position: absolute;
  right: 3px;
  top: 2px;
  color: red;
  height: 0;
  overflow: hidden;
  font-size: 11px;
  -webkit-transition: 0.3s ease-in height;
  transition: 0.3s ease-in height;
  z-index: 99;
}
#login-form .invalid .error-message,
#login-form .empty .empty-message {
  height: 20px;
}


/* Contact Form Modal
========================================================*/
#login-form .modal {
  letter-spacing: normal;
  display: none;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
#login-form .modal h4 {
  color: #000;
  padding: 0;
  margin: 0;
  font: 700 34px/36px 'Comfortaa', sans-serif;
}



/*register-form*/
/* Contact Form Basic Styles
========================================================*/
#register-form {
  position: relative;
}
#register-form label {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
#register-form label + label {
  margin-top: 18px;
}
#register-form label.message {
  width: 100%;
}
#register-form fieldset {
  border: none;
}
/* Contact Form Input
========================================================*/
#register-form input[type='text'] , #register-form input[type='password']{
  background-color: #f2f2f2;
  border-radius: 0;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  outline: none;
  height: 68px;
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  -webkit-appearance: none;
  cursor: text;
}

#register-form select {
    background-color: #f2f2f2;
    border-radius: 0;
    line-height: 25px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding: 13px 17px 7px 23px;
    color: #464646;
    outline: none;
    height: 68px;
    border: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    -webkit-appearance: none;
    cursor: pointer;

    background-image: linear-gradient(45deg, transparent 50%, #453562 50%), linear-gradient(135deg, #453562 50%, transparent 50%), linear-gradient(to right, #f2f2f2, #f2f2f2);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
  }

/* Contact Form Placeholder Styles 
========================================================*/
#register-form ._placeholder {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  cursor: text;
}
#register-form ._placeholder.focused {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
#register-form ._placeholder.hidden {
  display: none;
}
#register-form .file ._placeholder {
  display: none;
}
/* Contact Form Buttons
========================================================*/
#register-form .btn-wrapper {
  margin-top: 36px;
}
/* Contact Form Textarea 
========================================================*/
#register-form textarea {
  width: 100%;
  margin-top: 0;
  background-color: #f2f2f2;
  border-radius: 0;
  line-height: 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 13px 17px 7px 23px;
  color: #464646;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  height: 153px !important;
  -webkit-appearance: none;
  overflow: auto;
}
/* Contact Form Error messages
========================================================*/
#register-form .empty-message,
#register-form .error-message {
  position: absolute;
  right: 3px;
  top: 2px;
  color: red;
  height: 0;
  overflow: hidden;
  font-size: 11px;
  -webkit-transition: 0.3s ease-in height;
  transition: 0.3s ease-in height;
  z-index: 99;
}
#register-form .invalid .error-message,
#register-form .empty .empty-message {
  height: 20px;
}


/* Contact Form Modal
========================================================*/
#register-form .modal {
  letter-spacing: normal;
  display: none;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
#register-form .modal h4 {
  color: #000;
  padding: 0;
  margin: 0;
  font: 700 34px/36px 'Comfortaa', sans-serif;
}




