.modal-open {
    /*overflow-y: scroll !important;*/
    padding-right: 0px !important;
}

span.change:hover,
span.accept:hover,
span.cancel:hover,
.editar:hover {
    cursor: pointer;
}

span.pull-right.change, span.pull-right.cancel, span.pull-right.accept, span.pull-right.spinner, span.pull-right.spinner-check, span.pull-right.spinner-times {
    position: absolute;
    right: 10px;
    top: 7px;
    color: #444;
    opacity: 0;
}

span.pull-right.cancel,
span.pull-right.accept {
    display: none;
    opacity: 1;
    border: 1px solid #ddd;
    height: 32px;
    width: 32px;
    line-height: 32px;
    margin-top: 26px;
    text-align: center;
    vertical-align: middle;
}

span.pull-right.cancel {
    margin-right: -10px;
    color: #a94442;
}

span.pull-right.accept {
    margin-right: 25px;
    color: #3c763d;
}

span.pull-right.spinner,
span.pull-right.spinner-check,
span.pull-right.spinner-times {
	right: -20px;
}

span.pull-right.spinner-check {
    color: #3c763d;
}

span.pull-right.spinner-times {
    color: #a94442;
}


.wrap-edit {
	position: relative;
    margin-bottom: 35px;
}

.wrap-edit .editar p {
	margin: 0;
}

.editar {
    border: 1px solid transparent;
    padding: 5px;
    height: 32px;
    line-height: 20px;
}

.editar2 {
    border: 1px solid transparent;
    padding: 0;
    height: inherit;
    line-height: inherit;
    margin: 0px 0px 1em;
}

.editar:hover {
    border: 1px solid #ddd;
}

.editar:hover + span.change {
	opacity: 1;
}

span.change:hover {
    opacity: 1;
}

.wrap-edit .form-control {
	border-radius: 0px;
	height: 32px;
	padding: 5px;
	margin-bottom: 10px;
}

.wrap-edit .help-block {
    margin: -12px 5px;
    font-size: 12px;
}

.wrap-edit .help-block.text-success {
    color: #3c763d;
}

.wrap-edit .help-block.text-danger {
    color: #a94442;
}

.wrap-edit .form-control:active, .wrap-edit .form-control:focus {
	box-shadow: none;
	border-color: #ddd;
}

.modal .modal-body pre {
    height: 55vh;
}

/* Alert */

@keyframes shows {
    0%   {
        opacity: 0;
        bottom: -50px;
    }
    10%  {
        opacity: 1;
        bottom: 10px;
    }
    90%  {
        opacity: 1;
        bottom: 10px;
    }
    100% {
        opacity: 0;
        bottom: -50px;
        display: none;
    }
}

@keyframes hides {
    0%   {
        opacity: 1;
        bottom: 10px;
    }
    100% {
        opacity: 0;
        bottom: -50px;
        display: none;
    }
}

.alert.my-alert {
    position: fixed;
    opacity: 0;
    bottom: -50px;
    right: 25px;
    width: 35%;
    z-index: 2001;
    line-height: 35px;
    border-color: rgba(0,0,0,.12) !important;
    border-radius: 4px !important;
    padding: 16px;
    font-size: 14px;
    color: #fff;
    transition: all .3s linear;
    /*animation-name: shows;*/
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-duration: 5s;
}

.alert.fade.in.my-alert {
    opacity: 0;
}

.alert-success.my-alert {
    background-color: #5cb860 !important;
    -webkit-box-shadow: 0 12px 20px -10px rgba(76,175,80,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(76,175,80,.2) !important;
    box-shadow: 0 12px 20px -10px rgba(76,175,80,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(76,175,80,.2) !important;
}

.alert-warning.my-alert {
    background-color: #ffa21a !important;
    -webkit-box-shadow: 0 12px 20px -10px rgba(255,152,0,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(255,152,0,.2) !important;
    box-shadow: 0 12px 20px -10px rgba(255,152,0,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(255,152,0,.2) !important;
}

.alert-danger.my-alert {
    background-color: #f55a4e !important;
    -webkit-box-shadow: 0 12px 20px -10px rgba(244,67,54,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(244,67,54,.2) !important;
    box-shadow: 0 12px 20px -10px rgba(244,67,54,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(244,67,54,.2) !important;
}

.alert-info.my-alert {
    background-color: #00d3ee !important;
    -webkit-box-shadow: 0 12px 20px -10px rgba(0,211,238,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(0,211,238,.2) !important;
    box-shadow: 0 12px 20px -10px rgba(0,211,238,.28),0 4px 20px 0 rgba(0,0,0,.12),0 7px 8px -5px rgba(0,211,238,.2) !important;
}

.alert.my-alert button {
    line-height: 35px;
}

.alert.my-alert i {
    font-size: 18px;
    line-height: 35px;
    margin: 0px 10px;
}