* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Arial';
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

h1 {
    margin-top: 100px;
    margin-bottom: 50px;
}

.container {
    max-width: 840px;
    width: 100%;
    margin: 120px auto;
}

.table {
    border-collapse: collapse;
    width: 100%;
    white-space: nowrap;
}
.table td, .table th {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 8px;
}

.table__header, .table__footer {
    position: sticky;

    background: white;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.table__header {
    top: 0;
}
.table__footer {
    bottom: 0;
}

.table__header td, .table__header th {
    border: none;
    vertical-align: top;
}

.table tr .link {
    margin-top: 2px;
    display: inline-block;
}
.table tr .link--show {
    opacity: 0;
    transition: 0.15s;
    margin-top: 5px;
}
.table tr:hover .link--show {
    opacity: 1;
}


.tag {
    border: 1px solid;
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 3px;
    background: #80808012;
    color: #808080;
    text-transform: uppercase;
    display: inline-block;
}
.tag--aprobado {
    background: #1cba1c12;
    color: #1cba1c;
}
.tag--enviado {
    background: #479af612;
    color: #479af6;
}
.tag--rechazado {
    background: #fb4a4a12;
    color: #fb4a4a;
}
.tag--por-hacer {
    background: #ff940012;
    color: #ff9400;
}


.hacer {
    background: yellow;
}


.has-red-color {
    color: red;
}


.body-3 {
    font-size: 14px;
}


.propuestas {
    display: flex;
}

.propuestas__left {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    border-right: 1px solid rgba(0,0,0,0.1);
    margin-right: 20px;
}
.propuestas__left > div {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 0;
}
.propuestas__left select, .propuestas__left input {
    width: 100%;
    padding: 5px;
    margin-top: 4px;
}
.propuestas__left__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.propuestas__left .title {
    font-size: 17px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
}

.propuestas__right {
    width: 100%;
    position: relative;
}


.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: none;
    padding: 15px;
    align-items: center;
    justify-content: center;
}
.popup--displayed {
    display: flex;
}
.popup__wrapper {
    padding: 30px;
    background: white;
    width: 100%;
    max-width: 1080px;
    max-height: 100vh;
    overflow-y: auto;
}
.popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 1000px;
}
.popup__bg {
    background: rgba(0, 0, 0, 0.7);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.popup .button {
    position: sticky;
    bottom: 0;
}


.link {
    font-size: 13px;
}
a.link:hover {
    text-decoration: underline;
}
a.link + a.link::before {
    content: '|';
    margin: 0 5px;
}

.button {
    border: 1px solid black;
    display: inline-block;
    background: none;
    background-color: black;
    color: white;
    padding: 12px;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
}
.button--secondary {
    background: none;
    color: black;
}

.checkboxes ul {
    list-style: none;
}


.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form .title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}
.form input[type="text"], .form input[type="number"], .form input[type="date"], .form input[type="password"], .form select {
    width: 100%;
    padding: 12px;
}