/*
 * angular-modal v0.1.0
 * (c) 2013 Brian Ford http://briantford.com
 * License: MIT
 */

.btf-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  /*max-width: 550px;*/
  /*min-width: 330px;*/
  height: auto;
  z-index: 2000;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  /*background-color: white;*/
}

.btf-modal-info {
    position: fixed;
    top: 65px;
    right: 10px;
    min-width: 330px;
    height: auto;
    z-index: 2000;
}

/* Add this class when test area will appear */
.btf-test-area {
    top: 122px;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .btf-modal-info {
        width: 100%;
        right: 0;
        padding: 0 10px;
    }
}
