body {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}
.sidebar {
    position: fixed !important;
}
.main {
    flex: auto;
    display: flex;
    justify-content: center;
    position: relative;
}
.kontainer {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 57px;
}
.kontainer-header {
    display: flex;
    flex-direction: row-reverse;
    padding: 10px;
    background-color: #D64B3D;
    height: 62px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    width: 100%;
} 
.kontainer-header:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.15);
}
.search-child {
    display: flex;
    width: 50%;
    justify-content: center;
    align-self: center;
}
.test-header{
    width: 50%;
    display: flex;
    justify-content: center;  
}
.test-header p {
    color: whitesmoke;
    font-weight: bold;
    display: flex;
    align-self: center;
    margin: 0;
}
.kontainer-body {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.kontainer-footer {
    height: 66px;
    display: flex;
    justify-content: center;
}
.test-header code,
.kontainer-footer code {
    display: flex;
    align-self: center;
    margin: 0;
    color: #2A3D50;
    position: fixed;
    font-size: 16px;
}
.test-header sup,
.kontainer-footer sup {
    color: #D64B3D;
    font-size: 18px;
    display: flex;
    align-self: center;
    transform: rotate(50deg);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    z-index: 999999999999999999;
}
.test-header sup:hover,
.kontainer-footer sup:hover {
    transform: rotate(0deg);
    font-size: 40px;
}
.searchbar {
    margin-bottom: auto;
    margin-top: auto;
    /* height: 60px; */
    height: 50px;
    background-color: #353b48;
    border-radius: 30px;
    padding: 10px;
    border: 1.5px solid #D64B3D;
    display: flex;
    align-items: center;
}

.search_input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
}

.searchbar:hover>.search_input {
    padding: 0 10px;
    width: 280px;
    caret-color: red;
    transition: width 0.4s linear;
}

.searchbar:hover>.search_icon {
    background: white;
    color: #e74c3c;
}

.search_icon {
    height: 30px;
    width: 30px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}
.table-details {
    width: 100%;
}



@media screen and (max-width: 638px) {
    .searchbar:hover>.search_input {
        padding: 0 10px;
        width: 220px;
        caret-color: red;
        transition: width 0.4s linear;
    }
    .searchbar {
        height: 45px;
        padding: 7px;
    }
    .search_icon {
        height: 30px;
        width: 30px;
    }
}
.table-contant {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-self: center;
}
#data tbody {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
#data tr {
    display: flex;
    opacity: 1;
    width: 50%;
    padding: 2% 0% 2% 3%;
    justify-content: flex-end;
    font-weight: 700;
    color: #D64B3D;
}
tr td {
    margin: 1%;
}
td button {
    border: none;
    background-color: #2A3D50;
    color: white;
    padding: 4% 10% 4% 10%;
    font-size: 20px;
    border-radius: 6px;
    width: 100%;
}
#nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
#nav a {
    color: #D64B3D;
    text-decoration: none;
    margin: 5px;
    font-weight: 700;
    font-size: large;
}
.append-date {
    min-width: 25%;
    align-self: center;
    display: flex;
    /* justify-content: flex-end; */
}
.append-companyName {
    width: 55%;
    align-self: center;
    display: flex;
    /* justify-content: flex-end; */
}
tr td:nth-child(3) {
    width: 20%;
    align-self: center;
    display: flex;
}
