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

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    width: 100%;
    padding: 10px 0px;
    background-color: #d3d1d1;
}

.header-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-navigation li {
    list-style-type: none;
    text-decoration: none;
}

.main {
    width: 100%;
}

.main__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.navigation {
    width: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-table {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign {
    font-weight: 700;
}

.campaign span {
    font-weight: 400;
}

.date-select {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table {
    width: 100%;
    background-color: rgba(180, 176, 176, 0.205);
    border: 1px solid rgba(204, 203, 203, 0.74);
    border-collapse:collapse;
    border-radius: 5px;
}

.table:nth-child(1n) {
    margin-bottom: 10px;
}
.tableMain {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table td {
    font-size: 14px;
    text-align: left;
    padding: 2px 6px;
    line-height: 1.1;
    border: 1px solid rgb(116, 114, 114);
}

.table th {
    padding: 2px 6px;
    min-width: 80px;
    border-right: 1px solid rgb(116, 114, 114);
    margin-right: 10px;
    font-size: 14px;
    border-bottom: 1px solid rgb(41, 40, 40);
}

.table-name span {
    font-weight: 700;
    font-size: 14px;
}

.button-move {
    border-radius: 5px;
    font-size: 15px;
    background-color: #e6e5e5;
}

.spinner {
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    margin-top: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner img {
    width: 60px;
    height: 60px;
}