.submit-header-pagination {
    margin: 24px 80px 0 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submit-header-pagination button {
    border: 3px solid #fff;
    color: #fff;
    background-color: #0a0a0a;
}

.submit-header-pagination button .arrow {
    background-image: url("/assets/images/icons/nav-arrow-left-white.svg");
}

.submit {
    padding: 48px 64px 64px 64px;
    box-sizing: border-box;
    margin: 0 auto;
}

.submit .success-added {
    margin: -24px auto 40px auto;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 0px;
    background-color: #0a0a0a;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    width: 100%;
    line-height: 1.6;
}

.submit .inner {
    max-width: 1547px;
    width: 100%;
    margin: 0 auto;
}

.submit-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.submit-header-left h1 {
    font-size: 24px;
    line-height: 40px;
    margin: 0 0 0 0;
    font-family: 'Review';
    font-weight: 500;
    letter-spacing: 2.3;
    text-transform: uppercase;
}

.submit-header-left h2 {
    font-size: 60px;
    line-height: 40px;
    margin: 0;
    font-family: 'Offbeat Line';
    font-weight: 500;
}

.submit-header-right {
    margin-left: 32px;
    max-width: 560px;
}

.submit p {
    margin: 8px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    padding-right: 32px;
    box-sizing: border-box;
    line-height: 1.6;
}

.submit-table {
    margin: 24px 0 0 0;
    border-top: 0px solid #eee;
}

.submission-row {
    display: grid;
    grid-template-columns: 5fr 2fr 2fr;
    padding: 28px 0;
    border-top: 1px solid #292A2D;
    align-items: center;
    font-weight: 500;
}

.submit-table .submission-row:first-child {
    border-top: none;
}

.submission-header, 
.row-label {
    font-size: 13px;
    color: #fff;
    letter-spacing: 1.5;
    text-transform: uppercase;
    font-weight: 500;
}

.submission-header {
    padding-bottom: 8px;
}

.row-objection {
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px 32px;
}

.row-objection a {
    font-weight: 500;
    color: #fff;
}

.table-info .row {
    padding: 4px 0;
    margin: 0;
    box-sizing: border-box;
    vertical-align: top;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.5;
}

.row-label {
    min-width: 200px;
}

.table-info {
    margin-left: 32px;
    margin-bottom: 16px;
}

.table-info .row-comments, 
.table-info .row-admin {

}

.table-info .content-comments, 
.table-info .content-admin {
    line-height: 1.9;
}

.submission-row-border-noneX {
    border-top: none;
}

.submission-row-pending .submission-title {

}

.submission-title {
    
}

.submission-date {
    
}

.submission-more {
    
}

.submission-status {
    display: inline-block;
    width: 20%;
}

.status-pending {
    
}

.status-added {
    
}

.status-merged {

}

.status-declined {
    
}

.submission-comments, .submission-admin {
    line-height:1.5;
}

/* EXPANDABLE */

.submission-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s cubic-bezier(.4, 0, .2, 1);
}

.submission-expanded.open {
  max-height: 1000px; /* safely larger than content */
}

/* CARET */

.submission-row {
  position: relative;
}

.submission-row.open .submission-caret {
  transform: translateY(-50%) rotate(45deg); /* down-facing */
}

.submission-caret {
  position: absolute;
  top: 34px;
  right: 0px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.03s ease-in-out;
}

.submission-row.open .submission-caret {
  transform: rotate(45deg);
}

main a.btn-primary {
    width: 214px;
    border: 2px solid #fff;
    background-color: #0a0a0a;
    color: #fff;
}

main a.btn-white {
    color: #fff;
}

.btn-secondary {
    font-size: 16px;
    border-radius: 100px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Review';
    font-weight: 500;
    padding: 6px 10px;
    background-color: #0a0a0a;
    cursor: pointer;
}

button.load-more {
    font-size: 16px;
    padding: 8px 10px;
    margin: 8px auto 0 auto;
}

.submission-more .btn-secondary {
    margin-left: auto;
    min-width: 92px;
}

.btn-tertiary,
.submit p a {
    color: #FF27B0;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    line-height: normal;
    font-weight: 500;
    font-size: 16px;
    background-color: inherit;
    border: none;
    outline: none;
}

.submit p a {
    font-size: 15px;
    color: #fff;
}

.btn-quaternary {
    color: #fff;
    text-decoration: none;
    line-height: normal;
    font-weight: 500;
    font-size: 16px;
    background-color: inherit;
    outline: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #0a0a0a;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .submit {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .submit-header-pagination {
        margin: 24px 24px 0 24px;
    }
    
    .submit .success-added {
        text-align: left;
    }
    
    .submit-header {
        display: block;
    }
    
    .submit-header-left {
        
    }
    
    .submit-header-right {
        margin-top: 32px;
        margin-left: 0;
    }
    
    .submit p {
        font-size: 16px;
    }
    
    .submission-header-comments {
        display: none;
    }
    
    .submission-header-admin {
        display: none;
    }
    
    .submission-header-date {
        display: none;
    }
    
    .submission-header-status {
        display: none;
    }
    
    .submission-row {
        display: flex;
    }

    .submission-comments {
        display: none;
    }
    
    .submission-admin {
        display: none;
    }
    
    .submission-date {
        display: none;
    }
    
    .submission-status {
        display: none;
    }
    
    .submission-title {
        width: 100%;
    }
    
    .table-info, 
    .row-objection {
        margin-left: 16px;
    }
    
    .table-info .row-comments, 
    .table-info .row-admin {
        display: block;
    }

    .table-info .content-comments, 
    .table-info .content-admin {
        margin-top: 8px;
    }
}