:root {
    --font-title: "Barlow Condensed", sans-serif;
    --font-body: "Barlow", sans-serif;
    --primary: #DD6711;
    --secondary: #0D121E;
    --text: #231F20;
    --background: #0D121E;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-style: normal;
    font-optical-sizing: auto;
    font-family: var(--font-body);
    background-color: var(--background) !important;
    overflow-x: hidden;
}




.caption {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
}

.accordion {
    transition: all 0.3s ease-in-out;
}

.stroked_number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--primary);
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    border-radius: 40px;
    padding: 6px 24px;
    font-size: 1rem;
    gap: 8px;
    background-color: var(--primary);
    font-family: var(--font-title);
}

.btn:hover{
    opacity: 0.9;
}


.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}


.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #8C65C9;
}

.btn-primary:disabled {
    background-color: #808080;
    color: #C9C4CF;
    cursor: not-allowed;
}


.btn-secondary {
    background-color: #F2F0F7;

    color: var(--primary);
    border: 1px solid #D9CBED;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-secondary:disabled {
    background-color: #E0E0E0;
    color: #918F8F;
    border-color: #C8C7C7;
    cursor: not-allowed;
}


.btn-link {
    background-color: transparent;
    color: #231F20;

    padding-left: 0;
    padding-right: 0;
}

.btn-link:hover {
    color: #8C65C9;
    text-decoration: underline;
}

.btn-link:disabled {
    color: #C8C7C7;
    text-decoration: none;
    cursor: not-allowed;
}


.icon {
    font-size: 1.1em;
}


.ui_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px;
    width: 100%
}

.ui_inner_container {
    max-width: 1086px;
    margin: 0 auto;
    padding: 0 0px;
    width: 100%
}


.ui_link {
    background: white;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    width: fit-content;
    cursor: pointer;
    display: flex;
    transition: all 0.2s ease-in-out;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}



.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

label {
    color: #282828;
    font-family: var(--font-title);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4rem;
}


.select {
    padding-right: 2rem;
}

.textarea {
    height: 120px;
    resize: vertical;
}


.form-group span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 400;
}


.divider {
    width: 100%;
    height: 1px;
    background: #D7D9DE;
    margin: 40px 0;
}

.enable_all_styles ul {
    list-style: disc;
    list-style-position: inside;
}


@media (max-width: 1440px) {
    .ui_container {
        max-width: 1280px;
    }
}

@media (max-width: 1024px) {


    .ui_container,
    .ui_inner_container {
        padding: 0 20px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    #ui_header.shrunk {
        border-radius: 0px;
    }

}

@media (max-width: 768px) {}