body {
    background-color: #F0F0F1;
    font-family: Roboto, sans-serif;
}
input::placeholder {
    color: #B2B2B2;
    text-align: center;
    font-style: italic;
}

.blurred-text {
    color: transparent;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}
.revealed {
    color: inherit;
    text-shadow: none;
}

/** loader */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #8B4DFF #8B4DFF transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #FF3D00 #FF3D00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 
    
@keyframes rotationBack {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(-360deg);
}
}  

.form-label {
    margin-bottom: 0;
}
.btn-primary {
    border-color: #8B4DFF;
    background-color: #8B4DFF;
}
.btn-primary:hover{
    border-color: #5c0fec;
    background-color: #5c0fec;
}
/* disable button should be pale purple*/
.btn-primary:disabled {
    border-color: #FAE6FA;
    background-color: #FAE6FA;
    color: #8B4DFF;
}
/* links should be purple */
a {
    color: #8B4DFF;
}
a:hover {
    color: #5c0fec;
}
.more-options-btn {
    width: 100%;
    background: #6c757d;
    border-color: #6c757d;
    border-radius: 1rem;
    color: white;
}
.more-options-btn:focus, .more-options-btn:hover, .more-options-btn:active {
    border-color: #6c757d;
    background: #6c757d;
    color: white;
}
.continue-btn {
    width: 168px;
}

.nav-pills {
    border-radius: 0.375rem;
}
.nav-pills .nav-link {
    color: #A7A7A7;
    position: relative;
    background: #DFDFDF;
    clip-path: polygon(92% 0, 100% 50%, 92% 100%, 0% 100%, 8% 50%, 0% 0%);
    margin-right: -15px;
}
.nav-pills .nav-link:nth-child(3)
{
    margin: 0;
}
.nav-pills .nav-link:focus {
    border: none;
}
.nav-pills .nav-link.active {
    color: white;
    background: linear-gradient(75deg, rgba(0,176,255,1) 0%, rgba(0,51,228,1) 100%);
}

.initial-info-fields {
    border: 1px solid #C4C4C4;
    border-radius: 15px;
}

.initial-info-fields .form-control {
    width: fit-content;
}
.initial-info-fields .form-control#audienceIntent {
    min-width: 235px;
}
.initial-info-fields .form-control#toHelpMeWith {
    min-width: 195px;
}
