* {
    box-sizing: border-box;
}

input,
button {
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
}

h1 {
    margin-bottom: 60px;
    margin-top: -25px;
    font-weight: 400;
}

h2 {
    font-weight: 400;
}

b {
    font-weight: 400;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 8px 30px;
    font-size: xx-large;
    color: white;
    background-color: black;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.logo {
    border-radius: 50%;
    width: 350px;
    height: 350px;
}

#content {
    line-height: 1.5em;
    padding-bottom: 90px;
    font-size: 18px;
}

#loader {
    font-weight: 300;
    display: none;
    font-size: xxx-large;
    margin: 0 auto;
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.spinner {
    font-size: xxx-large;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -20px;
    margin-left: -20px;
    border: 4px solid #2dae4a;
    border-top: 4px solid #f46477;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#privacy-policy-link {
    font-size: large;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 30px;
}

.policy-body {
    max-width: 900px;
}

.privacy-policy-header {
    text-align: left;
}

#authorize_button {
    position: fixed;
    top: 20px;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 28px;
    color: black;
    background-color: white;;
    margin: 15px auto 0;
    font-weight: 200;
    cursor: pointer;
    z-index: 1;
    display: none;
}

#calendarBtnIcon {
    width: 44px;
    vertical-align: middle;
    height: auto;
}

p {
    margin: 0;
}

a {
    color: #f46477;
}

#message {
    font-weight: 300;
    max-width: 500px;
    margin: 40px auto 0;
    padding: 20px;
    line-height: 1.75;
}

.policy-message {
    font-weight: 300;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

#search {
    border-radius: 10px;
    padding: 12px 65px;
    font-size: unset;
    margin-bottom: 20px;
    box-sizing: border-box;
    width: 100%;
}

#search_icon {
    padding: 13px 7px;
    margin-left: 5px;
    position: absolute;
    width: 60px;
    height: auto;
}

#search-container {
    min-width: 300px;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

#teams {
    font-size: unset;
    margin: -16px auto 10px;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    color: #f46477;
}

#teams div {
    padding: 10px;
    cursor: pointer;
}

#teams div:hover {
    background-color: #f5f5f5;
}

.instruction {
    font-size: 20px;
    font-weight: 300;
}

#secondary-message, #tertiary-message {
    display: none;
}

@media (max-width: 600px) {
    #authorize_button {
        padding: 12px;
        font-size: 24px;
        position: relative;
        top: 0;
        margin: 25px auto 0;
    }

    #search_icon {
        width: 40px;
        position: absolute;
        padding: 14px 7px;
    }

    #search {
        padding: 12px 45px;
    }

    h1 {
        margin-bottom: 20px;
        margin-top: -50px;
    }

    body {
        margin: 8px 30px;
        font-size: large;
        color: white;
        background-color: black;
        text-align: center;
        position: relative;
    }

    .logo {
        border-radius: 50%;
        width: 250px;
        height: 250px;
    }

    #loader {
        display: none;
        font-size: x-large;
        margin: 0 auto;
        position: inherit;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .spinner {
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        margin-top: -20px;
        margin-left: -20px;
        border: 4px solid #2dae4a;
        border-top: 4px solid #f46477;
        border-radius: 50%;
        animation: spin 2s linear infinite;
    }

    #message {
        margin-top: 20px;
    }

    .policy-body{
        font-size: x-large;
    }
}