body {
    background-color: rgb(245, 245, 245);
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
p {
    font: 17px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}
main {
    display: flex;
    height: auto;
}
nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    background-color: rgb(252, 252, 252);
    min-width: 14%;
    height: min-content;
    padding-top: 90px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 20px;
    border-bottom-right-radius: 14px;
    z-index: 1;
}
.subtabs {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-left: 34px;
    margin-right: 20px;
    margin-bottom: 15px;
}
nav a, .subtabs a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: rgba(0, 0, 0, 0.8);
    user-select: none;
    cursor: pointer;
}
nav a:hover p, .subtabs a:hover p {
    text-decoration: underline;
}
nav a p {
    font: 16px Inter;
    font-weight: normal;
    margin: 14px 0;
}
.subtabs a p {
    font: 16px Inter;
    font-weight: 300;
    margin: 5px 0;
    color: rgba(0, 0, 0, 0.8);
}
.subtabs a .number {
    padding: 2px 6px;
    background-color: rgb(240, 240, 240);
    color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    text-decoration: none !important;
}
.container {
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    margin-left: 18%;
}
.container .title {
    font: 32px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    display: flex;
    margin: 0;
}
.page_block {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding: 30px;
    grid-gap: 30px;
}
.inputs_row {
    display: flex;
    justify-content: space-between;
    grid-gap: 40px;
}
.input_block {
    display: flex;
    flex-direction: column;
    grid-gap: 6px;
    width: 100%;
}
form button {
    width: min-content;
    font: 16px Inter;
    color: rgba(0, 0, 0, 0.8);
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 40px;
    margin-top: 15px;
}
.error_message {
    color: rgb(220, 53, 69);
    font: 16px Inter;
    background-color: rgb(255, 245, 245);
    padding: 8px 10px;
}
.invalid-feedback {
    color: rgb(220, 53, 69);
    font: 16px Inter;
}
.profile, .artists, .new_release, .news, .instruction, .analytics, .tiktok_analytics, .reports, .playlists, .promotion_admin, .administration {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin-top: 110px;
    margin-left: 50px;
    margin-bottom: 200px;
}
.profile, .artists, .new_release, .tiktok_analytics, .reports, .playlists, .promotion_admin, .administration {
    grid-gap: 30px;
}

.selectize-control.single .selectize-input, .selectize-control.multi .selectize-input {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
}
.selectize-control.single .selectize-input input,
.selectize-control.multi .selectize-input input,
.selectize-control.single .selectize-input .item,
.selectize-control.multi .selectize-input .item,
.selectize-dropdown-content .option {
    font: 16px Inter;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
}
.selectize-dropdown-content .option {
    line-height: 2.5;
}