@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");

.report-bug {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-radius: 30px;
    box-sizing: border-box;
    z-index: 999;
}

.report-bug .report-bug-button {
    /* height: 25px;
    width: 25px; */
    padding: 15px;
    background-color: #2c2f33;
    border-radius: 50%;
    font-size: 1.5em;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.report-bug .report-bug-button i {
    margin: 0;
}

.report-bug .report-bug-button:hover {
    box-shadow: -1px 2px 6px #000;
    background-color: #7289da
}
.report-bug .report-bug-button.active {
    box-shadow: -1px 2px 6px #000;
    background-color: #7289da
}

.report-bug .report-bug-button::before {
    content: 'Reportar Bug';
    display:  block;
    position:  absolute;
    margin-right: 190px;
    background-color:  #333;
    color:  #fff;
    border-radius:  3px;
    width:  0;
    opacity:  0;
    padding:  0;
    padding: 6px 12px 6px 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.6em;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    transition: opacity 0.4s, width 0.4s, padding 0.5s;
}

.report-bug .report-bug-button:hover::before {
    opacity:  1;
    width:  97px;
}

.report-bug .report-bug-form {
    padding: 20px 40px;
    /* margin-bottom: 15px; */
    box-shadow: 0px 0px 5px 1px #ccc;
    border: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
    transition: opacity .3s ease-in, margin .3s ease-in;
    opacity: 0;
    display: none;
    background-color: #fff;
}


.report-bug .report-bug-form.active {
    margin-bottom: 15px;
    opacity: 1;
    display: block;
}

.report-bug .report-bug-form .report_form_status {
    font-size: small;
    max-width: 250px;
    word-wrap: break-word;
}

.report-bug .report-bug-form .report_form_status .report_form_error {
   color: #d9534f;
   border-left: 3px solid #d9534f;
   padding-left: 5px;
   display: none;
}

.report-bug .report-bug-form .report_form_status .report_form_success {
   color: #5cb85c;
   border-left: 3px solid #5cb85c;
   padding-left: 5px;
   display: none;
}

.report-bug .report-bug-form .report_form_status .report_form_info {
   color: #f0ad4e;
   border-left: 3px solid #f0ad4e;
   padding-left: 5px;
   display: none;
}

.report-bug .report-bug-form .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.report-bug .report-bug-form .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2c2f33;
    border-radius: 50%;
    padding: 15px;
    color: #7289da;
    position: absolute;
    top: -10px;
}

.report-bug .report-form-row {
    display: grid;
    grid-template-columns: 1fr;
    margin: 10px 0px 10px 0px;
}
.report-bug .report-form-row label {
    font-size: 13px;
    color: #2c2f33;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
}
.report-bug .report-form-row button {
    background-color: #2c2f33;
    border: 0px;
    padding: 7px 0px 7px 0px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    transition: background 0.4s;
}
.report-bug .report-form-row button:hover {
    background-color: #7289da
}
.report-bug .report-input {
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
.report-bug .report-input:focus {
   outline: none;
   border: 1px solid #7289da;
}
.report-bug input {
    height: 28px;
}
.report-bug input[type="file"] {
    height: auto;
    border: none;
}
.report-bug textarea {
    resize: none;
}
.report-bug input::placeholder {
    font-size: 11px;
    font-family: 'Courier New', Courier, monospace;
}
.report-bug textarea::placeholder {
    font-size: 11px;
    font-family: 'Courier New', Courier, monospace;
}
.report-bug textarea::placeholder::after {
    display: block;
    content: " ";
}
