.sandbox-warning {
    display: none;
}

.checkout #debugger {
    position: absolute;
    float: right;
    width: 400px;
    font-size: 10px;
    top: 0px;
    right: 100px
}

.checkout #log-output {
    height: 280px;
    overflow-y: scroll;
}

.checkout .log-record {
    border-bottom: 1px solid #eeeeee;
}

#checkout-container {
    background-color: white;
    /*border: 2px solid #AE6E6E;*/
    /*border-radius: 10px;*/
    overflow:hidden;
}

.checkout .view {
    padding: 0px;
    display: none;
}

.checkout .auth-state{
    padding: 40px;
}

.checkout .auth-state input{
    margin: 6px 0;
}

.checkout .view-show {
    overflow: hidden;
    display: block;
}

.view-show-add {
    opacity: 0;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
    animation: bounceOut 3s;
    display: block !important;
}

.view-show-add-active {
    opacity: 1;
}

.view-show-remove {
    display: none !important;
    opacity: 1;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.errors {
   /*height:12px;*/
}

.errors .error.ng-enter {
    opacity: 0;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
    animation: bounceOut 3s;
    display: block !important;
}
.errors .error.ng-enter-active {
    opacity: 1;
}
