html,
body,
.main-content,
.main-container {
    display: flex;
    height: 100%;
    flex-direction: column;
}
.main-container-spaced {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.table {
    table-layout: auto;
}
.table td.wrap {
    word-wrap: break-word;
    white-space: normal !important;
}

textarea.form-control {
    min-height: 130px;
}

.error-code {
    text-align: center;
    font-size: 40px;
}
.error-code h1 {
    font-size: 50px;
    color: #a60109;
}

.pd-b-15 {
    padding-bottom: 15px;
}
.mg-l-15 {
    padding-bottom: 15px;
}

.iconscontainer {
    margin: 0 15px;
    height: 100%;
}
.iconscontainer .icon {
    position: relative;
    overflow: visible;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.iconscontainer .icon i {
    font-size: 1.2rem;
}
.iconscontainer .icon span {
    position: absolute;
    top: 20%;
    left: -50px;
    padding: 0.55rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    color: #000;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.07);

    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.iconscontainer .icon:hover span {
    top: 100%;
    opacity: 0.9;
}
