.page-identifier {
    color: #3399cc;
}

.phone-large-btn {
    height: 72px;
    border-radius: 8px;
    font-size: large;
    font-weight: bold;
}

.save-button {
    display: inline;
    color: white;
    border-color: #1eafdc #1193d5 #035592;;
    border: 1px solid;
    border-radius: 0.333em;
    background: -webkit-gradient(
        linear,
        left top, left bottom,
        from(white),
        to(#0c5fa5),
        color-stop(0.03, #72c6e4)
    );
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 0.286em 1em 0.357em;
    font-size: 0.94em;
    line-height: 1.429em;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.save-button:disabled {
    display: inline;
    color: white;
    border-color: #1eafdc #1193d5 #035592;;
    border: 1px solid;
    border-radius: 0.333em;
    background: -webkit-gradient(
        linear,
        left top, left bottom,
        from(white),
        to(gray),
        color-stop(0.05, gray)
    );
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 0.286em 1em 0.357em;
    font-size: 0.94em;
    line-height: 1.429em;
    cursor: not-allowed;
    font-weight: bold;
    text-decoration: none;
}

.phone-spacing {
    margin-right: 24px;
}

.red-font {
    color: #ff0000;
}
.green-font {
    color: #50aa4d;
}

.type {
    width: 11rem;
}

.phone-body {
    font-size: large;
}
.phone-body p{
    margin: 6px;
}
.phone-body textarea {
    font-size: x-large;
}

.phone-small-btn {
    height: 42px;
    border-radius: 8px;
    font-size: large;
    font-weight: bold;
  }
.phone-medium-btn {
    height: 60px;
    border-radius: 8px;
    font-size: large;
    font-weight: bold;
}
.phone-large-btn {
  height: 72px;
  border-radius: 8px;
  font-size: large;
  font-weight: bold;
}

.close-button {
    display: inline;
    color: white;
    border-color: #a1a7ae #909498 #6b7076;
    border: 1px solid;
    border-radius: 0.333em;
    background: -webkit-gradient(
        linear,
        left top, left bottom,
        from(white),
        to(#9fa7b0),
        color-stop(0.05, #c5cbce)
    );
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 0.286em 1em 0.357em;
    font-size: 0.94em;
    line-height: 1.429em;
    cursor: pointer;
    font-weight: bold;
}

.grey {
  color: grey;
}

.inactive {
    display: none !important;
}

.display-block {
  display: block;
}

table.fiber-table {
    border-collapse: collapse;
    box-sizing: border-box;
    color: #222;
    display: table;
    margin-bottom: 1rem;
    width: 100%;
}
table.fiber-table>thead>tr>th {
    width:80px;
    height:40px;
    font-size: 16px;
    background-color: #c2c2d6;
    position: sticky;
    top: 0;
}
table.fiber-table>tbody>tr>td {
    width:80px;
    height:30px;
    font-size: 14px;
}
table.fiber-table>tbody{
    background-color: #ffffff;
}
table.fiber-table>tbody>tr.grey-table-row {
    background-color: #808080;
}
table.fiber-table>tbody>tr:nth-child(odd) {
    background-color: #E8E8E8;
}
table.fiber-table>tbody>tr:hover td {
    background-color: #0FF;
}

.deleted {
    background-color: rgb(232 110 110) !important;
}

table .complaint-delimiter {
    background-color:blue;
}

.map {
    height: 100%;
}

.sticky-table {
    border-collapse: collapse;
    box-sizing: border-box;
    color: #222;
    display: table;
    margin-bottom: 1rem;
    width: 100%;
}
.sticky-table > thead > tr > th {
    background-color: #c2c2d6;
    z-index: 1;
    top: 15px;
}
.sticky-table>tbody {
    background-color: #ffffff;
}
table.sticky-table>tbody>tr:nth-child(odd) { background-color: #E8E8E8; }
table.sticky-table>tbody>tr:hover td { background-color: #0FF; }

.edit-link {
    background: url("/static/assets/img/pencil.png");
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 20px;
}
.with-image{
  background-size: cover;
  background-color: Transparent;
  border: none;
  cursor: pointer;
}
.with-image:disabled {
  cursor: not-allowed !important;
}
.small-icon {
  width: 16px;
  height: 16px;
}

.print-buttons-container {
    margin-top: 7px;
    margin-bottom: 7px;
}
.not-last-print-request-btn {
    margin-bottom: 7px;
}
.print-request-btn {
    width: 134px;
}

.back-button {
  margin-bottom: 10px;
}

.create-contract {
    margin-top: 10px;
}

.create-notifications-checks {
    margin-bottom: 10px;
}

.installation-request-notes {
    width: 200px;
    height: 200px;
}
.installation-request-date {
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
