﻿/* Move down content because we have a fixed navbar that is 50px tall */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
/*.dl-horizontal dt {
    white-space: normal;
}*/

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    max-width: 280px;
}*/

/* Responsive: Portrait tablets and up */
/*@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}*/
#feedBackDialog {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#feedBackDialog .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#feedBackDialog .modal {
  width: 600px;
  height: 500px;
  background-color: #f0f1f2;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
}
#feedBackDialog .modal-title {
    background-color: #DCDCDC;
    margin: 0;
    border-radius: 4px 4px 0 0;
    text-align: left;
}
#feedBackDialog .modal-title h3 {
  color: steelblue;
  font-size: 1em;
  margin: 0.2em;
  font-weight: 600;
}
#feedBackDialog .modal-title span {
  float: right;
  display: inline-block;
  padding: 2px 5px;
  background: #aa0114;
  position: absolute;
  top: 0;
  right: 0;
  color: #FFFFFF;
}
#feedBackDialog .modal-body ul {
  list-style-type: none;
  text-align: left;
  display: inline-block;
}
#feedBackDialog .modal-body {
  padding: 20px 35px;
  font-size: 0.9em;
}
#feedBackDialog .modal-body h1{
    color: #aa0114;
    font-size: 1.5em;
    margin: 0.2em;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}
#feedBackDialog .modal-body h2{
    color: steelblue;
    font-size: 1.2em;
    margin: 0.2em;
    font-weight: 600;
    text-align: center;
}
#feedBackDialog p {
  color: #344a5f;
  line-height: 0.1em;
}

#feedBackDialog textarea {
height: 80px;
max-height: 80px;
width: 80%;
}

#feedBackDialog form {
  text-align: center;
  margin-top: 35px;
}
#feedBackDialog form input[type=text] {
  padding: 12px;
  font-size: 1.2em;
  width: 300px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-font-smoothing: antialiased;
}
#feedBackDialog form input[type=button] {
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
#feedBackDialog form p {
  text-align: center;
  opacity: 0.8;
  font-size: 0.9em;
}
#feedBackDialog .modal-footer {
    position: absolute;
    text-align: center;
    width: 100%;
    color: steelblue;
    font-style: italic;
}

/*Browser close modal start*/

#browserCloseModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
  
#browserCloseModal .modal {  
  width:500px; 
  overflow: hidden; 
  position: absolute;      
}

#browserCloseModal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;  
}

#browserCloseModal .modal-body {
color: #5a4b4b;
}

#browserCloseModal .modal-dialog {
  position: fixed;
  left:460px;
  width:500px; 
  margin-top:-10px;  
}
#browserCloseModal .modal-content {  
  background-color: #ffffff;  
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-clip: padding-box;
  outline: 0;  
  padding-left:25px;
}

#browserCloseModal .modal-footer {
  padding: 10px;
  text-align: right;  
}

.modal-yes-button{
	width:70px;
	height:30px;	
	background-color:#3a8dd4;
	color:#ffffff;
	border-radius: 5px;
}

.modal-no-button{
	width:70px;
	height:30px;
	color:#525050;
	background-color:#ffffff;	
    border-radius: 5px;
}

/*Browser close modal end*/

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
