/*
Modals
--------------------------------------------------

.modal-open      - body class for killing the scroll
.modal           - container to scroll within
.modal-dialog    - positioning shell for the actual modal
.modal-content   - actual modal w/ bg and corners and shit

Kill the scroll on the body
*/
.modal-open {
  overflow: hidden;
}
/*
Container that the modal scrolls within 
*/
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  font-family: Helvetica,Arial,sans-serif;
  /*
  Prevent Chrome on Windows from adding a focus outline. For details, see
  https://github.com/twbs/bootstrap/pull/10951
  */
  outline: 0;
}
.modal, .modal * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 20px;
    font-size: 18px;
    border-radius: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal .btn.focus, .modal .btn:focus, .modal .btn:hover {
    color: #333;
    text-decoration: none;
}
.modal .btn.active, .modal .btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.modal.fade .modal-dialog {
	-webkit-transform: translate(0, -25%);
	-moz-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
/*
Shell div to position the modal with bottom padding
*/
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  padding: 20% 0 0;
}
/*
Actual modal
*/
.modal-content {
  position: relative;
  background-color: #131313;
  color: #fff;
  background-clip: padding-box;
  border-radius: 15px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5);
  outline: 0;
  text-align: center;
}
/*
Modal background
*/
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.in {
	opacity: .5;
}
/*
Modal header
Top section of the modal w/ title and dismiss
*/
.modal-header {
  padding: 15px;
}
/*
Close icon
*/
.modal-header .close {
  margin-top: -2px;
}
/*
Title text within header
*/
.modal-title {
  margin: 0;
  font-weight: 500;
  font-size: 30px;
}
/*
Modal body
Where all modal content resides (sibling of .modal-header and .modal-footer)
*/
.modal-body {
  position: relative;
  padding: 15px;
  font-size: 16px;
  font-weight: 300;
}
/*
Footer (for actions)
*/
.modal-footer {
  padding: 15px;
}
/*
Properly space out buttons
*/
.modal-footer .btn + .btn {
  margin-bottom: 0; 
  /* account for input[type="submit"] which gets the bottom margin like all other inputs */
  margin-left: 5px;
}
/*
but override that for button groups
*/
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* 
and override it for block buttons as well
*/
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
/*
Measure scrollbar width for padding body during modal show/hide
*/
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
/*
Scale up the modal
*/
@media (min-width: 768px) {
  /*
  Automatically set modal's width for larger viewports
  */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
  /*
  Modal sizes
  */
  .modal-sm { width: 300px; }
}
@media (min-width: 992px) {
  .modal-lg { width: 900px; }
}