/***/

/*Header*/

.hero {
    background-color: #59CBE8;
}

/***/

/*Content*/

.split-section {
    display: flex;
}

.split-section .left {
    flex: 1;
    line-height: 25px;
    padding-right: 10px;
}

.split-section .right {
    flex: 1;
    border-left: 1px solid rgb(148, 156, 161, 0.45);
    line-height: 25px;
    padding-left: 30px;
}

.container.basic p {
    width: 80%
}

/***/

/*Tables & Rows*/

.row-component.single {
    flex: 1;
}

.row-component.links {
    flex: 3;
    display: flex;
}

.row-component .link {
    flex: 1;
}

.toggle-button {
    margin: 20px;
    padding: 20px 50px 20px 50px;
    background-color: #4d555a;
    line-height: 30px;
    font-size: 25px;
    color: white;
    cursor: pointer;
}

.toggled-content {
    margin: 20px;
    padding: 20px 50px 20px 50px;
}

.toggled-content h3 {
    border-bottom: 1px solid rgb(148, 156, 161, 0.45);
    padding: 30px 0px 10px 0px;
}

.row {
    width: 80%;
}

.container a {
    color: #43B02A;
    font-weight: bold;
    transition: 0.3s;
}

.container a:hover {
  color: #59CBE8;
}

.toggled-content a {
    color: #43B02A;
    font-weight: bold;
    transition: 0.3s;
}

.toggled-content a:hover {
  color: #59CBE8;
}

.modal-backdrop {
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #939ba1;
    opacity: 0.8;
    min-height: 100%;
}

html, body {
    height: 100%;
    margin: 0;
}

.releases-container {
    z-index: 2;
    top: 20px;
    bottom: 0;
    left: 20px;
    right: 20px;
    background-color: white;
    position: absolute;
}

.releases-header {
    display: flex;
    color: #0033a0;
    font-weight: bold;
}

.releases-row {
    display: flex;
}

.releases-container .name {
    width: 450px;
    padding: 5px 5px 5px 0px;
    margin: 5px 10px;
    border-bottom: 5px solid rgb(182, 182, 182);
    border-bottom-width: 1px;
}

.releases-container .version {
    width: 100px;
    padding: 5px 5px 5px 0px;
    margin: 5px 10px;
    border-bottom: 5px solid rgb(182, 182, 182);
    border-bottom-width: 1px;
}

.releases-container .last-modified {
    width: 250px;
    padding: 5px 5px 5px 0px;
    margin: 5px 10px;
    border-bottom: 5px solid rgb(182, 182, 182);
    border-bottom-width: 1px;
}

.releases-container .size {
    width: 250px;
    padding: 5px 5px 5px 0px;
    margin: 5px 10px;
    border-bottom: 5px solid rgb(182, 182, 182);
    border-bottom-width: 1px;
}

.releases-container h2 {
    padding: 40px;
}

.releases-container .etag {
    width: 450px;
    padding: 5px 5px 5px 0px;
    margin: 5px 10px;
    border-bottom: 5px solid rgb(182, 182, 182);
    border-bottom-width: 1px;
}

.data {
    display: none
}

.data.show{
    display: flex;
    flex-direction: column;
}

.name.toggle {
    display: none;
}

.name.toggle.show {
    display: block
}

.name.expand:hover {
    background-color: #939ba1;
}

.name a {
    color: #43B02A;
    font-weight: bold;
}

.close-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.close {
    background-color: #c8102e;
    color: white;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.releases-button {
    cursor: pointer;
    display: inline-block;
    text-decoration: underline;
}

.close-x {
    position: relative;
    top: 25%;
    text-align: center;
    font-size: 40px;
    font-weight: lighter;
}

.releases-table {
    padding: 0px 40px 40px 40px;
}

.modal-backdrop {
    display: none;
}

.releases-container {
    display: none;
}

.modal-backdrop.show {
    display: block;
}

.releases-container.show {
    display: block;
}

.expand-icon {
    height: 15px;
    cursor: pointer;
    margin-right: 5px;
}

.collapse-icon {
    height: 15px;
    transform: rotate(45deg);
    cursor: pointer;
    margin-right: 5px;
}

.data .name {
    margin-left: 35px;
}
