/*** Modal CSS ***/
.close-btn {
    right: 15px;
    bottom: 10px;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
    text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px; /* Adjusts for spacing */
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.fade.in {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
     display: inline-block;
  text-align: left;

}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  padding: 0 15px;
  border-bottom: none;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height:normal;
  width: 100%;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding:  20px 15px;
  text-align: left;
  border-top:none;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}


.close-btn{
    color: #6400aa;
    background: none;
    border: 0;
    float: right;
    font-size: 36px;
    position: relative;
    padding: 0;
    margin: 0px -5px;
    right: 15px;
    bottom: 10px;
	cursor:pointer;
}

.close-btn-container{
    display: block;
    position: relative;
    width: 100%;
    float: left;
	z-index: 1;
	height: 20px;
}

@media (min-width: 767px) {
    .modal-dialog{
          vertical-align: middle;
    }
    .modal-content {
        width: 530px;
    }
	    #sessionModal .modal-content {
		width: 400px;
		height:232px;
    }
}

#sessionModal .btn-primary{
margin-right:10px;
}
#sessionModal .ng-isolate-scope p{
margin-bottom: 13px;
}
/*** Modal CSS End ***/