*,
*:before,
*:after {
    box-sizing: border-box;
}

.c-locked {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.c-container {
    width: 100%;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.c-section {
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.c-title {
    font-family: Bokonique, NotoSans, Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: break-word;
}

.c-heading {
    font-family: Bokonique, NotoSans, Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
}

.c-heading-highlight {
    color: #FFB517;
    font-family: Bokonique, NotoSans, Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
}

.c-subheading {
    font-family: BokoniqueLight, NotoSans, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.c-link {
    transition: 0.2s;
    -webkit-transition: 0.2s;
}

.c-link:hover {
    color: #FFB517;
}

.c-response-message {
    display: none;
}

.c-response-message._active {
    display: flex;
}

.c-response-message._active._success {
    color: #11aa00;
}

.c-response-message._active._failure {
    color: rgba(221, 0, 0, 0.4);
}

.c-field {
    border: 1px solid #fafafa;
    border-radius: 15px;
    outline: none;
    background-color: #fafafa;
    font-size: 15px;
    padding: 15px 20px;
}

.c-field:focus {
    border: 1px solid #FFB517;
}

.c-select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIwIiBoZWlnaHQ9IjE5MyIgdmlld0JveD0iMCAwIDMyMCAxOTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xODIuNiAxODMuNkMxNzAuMSAxOTYuMSAxNDkuOCAxOTYuMSAxMzcuMyAxODMuNkw5LjI5OTY1IDU1LjYwMDRDMC4wOTk2NTMyIDQ2LjQwMDQgLTIuNjAwMzUgMzIuNzAwNCAyLjM5OTY1IDIwLjcwMDRDNy4zOTk2NSA4LjcwMDQxIDE4Ljk5OTcgMC45MDAzOTEgMzEuOTk5NyAwLjkwMDM5MUgyODhDMzAwLjkgMC45MDAzOTEgMzEyLjYgOC43MDA0MSAzMTcuNiAyMC43MDA0QzMyMi42IDMyLjcwMDQgMzE5LjggNDYuNDAwNCAzMTAuNyA1NS42MDA0TDE4Mi43IDE4My42SDE4Mi42WiIgZmlsbD0iI0ZGQjUxNyIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: auto 7px;
    cursor: pointer;
}

.c-primary-btn {
    width: max-content;
    border: 1px solid #FFB517;
    border-radius: 15px;
    outline: none;
    color: #FFFFFF;
    background-color: #FFB517;
    font-size: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

.c-primary-btn:hover {
    transform: scale(0.94);
    -webkit-transform: scale(0.94);
}

.c-secondary-btn {
    width: max-content;
    border: 1px solid #e9ebf4;
    border-radius: 15px;
    outline: none;
    background: none;
    font-size: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

.c-secondary-btn:hover {
    transform: scale(0.94);
    -webkit-transform: scale(0.94);
}

.c-btn-with-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-btn-with-loader-icon {
    height: 14px;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

.c-blurred-circle {
    position: absolute;
}

.c-hr {
    height: 1px;
    background-color: #e9ebf4;
}

.c-hidden {
    display: none;
}

.ia-header-line-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    z-index: 900;
    transform: translateY(0);
    transition: transform 400ms ease;
}

body.topbar-hidden .ia-header-line-container {
    transform: translateY(-100%);
}

.header-main {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 10px 60px;
    top: 32px;
    z-index: 1000;
    transition: top 400ms ease;
}

body.topbar-hidden .header-main {
    top: 0;
}

main {
    padding-top: 102px;
    transition: padding-top 400ms ease;
}

body.topbar-hidden main {
    padding-top: 70px;
}


@media only screen and (max-width: 800px) {
    .c-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 600px) {
    .c-section {
        padding: 20px;
    }

    .c-title {
        font-size: 16px;
        line-height: 1.25;
    }

    .c-heading {
        font-size: 24px;
        line-height: 1.25;
    }

    .c-heading-highlight {
        font-size: 24px;
        line-height: 1.25;
    }

    .header-main {
        padding: 8px 20px;
    }
}

@media only screen and (max-width: 400px) {
    .c-title {
        font-size: 20px;
    }

    .c-heading {
        font-size: 20px;
    }

    .c-heading-highlight {
        font-size: 20px;
    }
}