* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

select,
button,
input,
textarea {
    outline: none;
    border: none;
    font-family: 'Mulish', sans-serif;
    border-radius: 0;
    margin: 0;
}

body {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    color: #3a3a3a;
}

body.noScroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

/*********************
General
********************/

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1150px;
    margin: auto;
    padding: 0 20px;
}

.section.w1000 {
    max-width: 1000px;
}

.section.w850 {
    max-width: 850px;
}

.section.w750 {
    max-width: 750px;
}

.section.fluid {
    max-width: min-content;
}

.header {
    font-family: 'Amatic SC', cursive;
    font-size: 75px;
    margin-bottom: 40px;
}

.header.marginTop {
    margin-top: 40px;
}

.pink {
    color: #d52687;
}

.white {
    color: white;
}

.button {
    font-weight: 700;
    font-size: 30px;
    background-color: #d52687;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
    display: block;
    text-transform: lowercase;
    cursor: pointer;
    position: relative;
}

.button.alt {
    background-color: #53a9b5;
}

.button.small {
    font-size: 20px;
    padding: 5px 20px;
}

.button:hover {
    background-color: #44396e;
}

.button.loading {
    color: rgba(0, 0, 0, 0);
    pointer-events: none;
}

.button.loading::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.divider {
    border-bottom: 3px dashed #438F8B;
    margin: 40px auto;
    max-width: 1150px;
    width: 100%;
}

.tiny {
    font-size: 10px;
}

@media (max-width: 700px) {
    .header {
        font-size: 40px;
    }

}

/*********************
Form
********************/

.formTitle {
    font-family: 'Amatic SC', cursive;
    font-size: 40px;
    margin-bottom: 20px;
}

.formQuestion {
    display: block;
    text-align: left;
    font-size: 18px;
    padding: 10px;
}

.formQuestion+input,
.formQuestion+select {
    padding: 10px;
    width: 100%;
    display: block;
    padding-bottom: 10px;
    border: 1px solid lightgray;
    transition: 0.3s;
    background-color: white;
}

.formQuestion+input:focus,
.formQuestion+select:focus {
    border: 1px solid black;
}

.formOption {
    background-color: rgba(58, 58, 58, 0.1);
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: left;
}

.formOption>input {
    margin-right: 10px;
}

.formButton {
    margin-top: 20px;
    cursor: pointer;
}

.formButton.marginBottom {
    margin-bottom: 40px;
}

/*********************
Menu
********************/

#menu {
    padding: 20px;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: white;
    margin-bottom: 30px;
    z-index: 1;
}

#menu>a {
    margin: 0 10px;
    text-align: center;
}

/*********************
Modal
********************/

.modal {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
}

.modal.active {
    display: flex;
}

.modalContent {
    width: 500px;
    padding: 20px;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    text-align: left;
    position: relative;
    max-height: 100%;
    overflow-y: auto;
}

.modalRow {
    align-items: center;
    display: grid;
    grid-template-columns: 85px auto 35px;
    column-gap: 6px;
}

.modalLabel {
    width: 100%;
}

.modalLabel.colspan2 {
    grid-column: 1/3;
}

.modalInput {
    flex-grow: 1;
    width: 100%;
    border: 1px solid lightgray;
    padding: 5px;
    font-size: inherit;
}

.modalTextarea {
    display: block;
    width: 100%;
    border: 1px solid lightgray;
    height: 100px;
    resize: none;
    padding: 10px;
    font-size: inherit;
}

.modalSave {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.modalSave.delete {
    background-color: darkred;
}

.modalSave.hide,
/* this hide the artist assign button while in drop down is disabled */
.choices.is-disabled ~ .modalSave {
    display: none;
}

.modalExit {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/*********************
Table
********************/

.table {
    width: 100%;
}

.tableSearch {
    width: 100%;
    border: 1px solid lightgray;
    padding: 10px;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.tableHeader,
.tableRow {
    display: none;
    width: 100%;
    overflow-y: auto;
    transition: 0.3s;
    cursor: pointer;
    align-items: center;
    text-align: left;
    padding: 10px;
    background-color: white;
    font-size: 14px;
    min-width: 900px;
}

.tableHeader {
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    display: grid !important;
}

.tableRow.active {
    display: grid;
}

.tableRow.alt {
    background-color: #dfdfdf;
}

.tableRow:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

@media(max-width: 800px) {
    .table {
        overflow-x: auto;
    }

    .tableRow:hover {
        transform: none;
        box-shadow: none;
    }
}