
h1,
h2,
h3,
h4 {
    margin: 0;
}

body {
    padding: 60px;
    --border-color: #FFB3AE;
    --primary-bg-color: #E81F2F;
    --secondary-bg-color: #FF8983;
    --pink-color: #FFDAD7;

    --primaty-font-family: 'Manrope';
}

.button-link {
    padding: 15px;
    background: linear-gradient(to right, var(--primary-bg-color), var(--secondary-bg-color));
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    border-radius: 20px;
}
.button-link:hover {
    background: var(--primary-bg-color) !important;
}

.buttonContainer {
    padding: 50px;
    display: grid;
    justify-content: center;
    align-content: center;
    gap: 20px;
}

.example-code {
    /*background: #9a9595;*/
    padding: 8px 16px 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    /* margin-top: 16px; */
    margin-bottom: 0px;

    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
pre {
    margin-bottom: 8px;
}
.pre-wrapper {
    /*background: #9a9595;*/
    padding: 8px 16px 0px 16px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    margin-top: 16px;
    margin-bottom: 0px;

    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.example-code-widgetEmbedded,
.example-code-widgetModal {
    margin-bottom: 12px;
}

code {
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 24px;
}

.chapter-title {
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 2px;
}

.container-fluid {
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    padding: 0px;
}

.page-title {
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 56px;
}

.subchapter-title {
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 18px;
}

.field-name {
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 16px !important;
    line-height: 24px;
}
.mt-5, .my-5 {
    margin-top: 56px !important;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* grid-gap: 155px; */
}

.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}

.form-control {
    border: 2px solid #FFB3AE;
    border-radius: 20px;
    /* height: calc(2.5rem + 2px) !important; */
    color: #000;
    padding: 14px 16px;
    height: 52px !important;

    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

select {
    appearance: none;
    color: #000;
    background: url('arrow.svg') no-repeat right;
    background-position-x: calc(100% - 4px);
    /* text-rendering: geometricPrecision; */
}
option {
    vertical-align: middle;
}

.btn-primary,
.btn-secondary {
    padding: 8px 16px;
    border-radius: 12px;
    width: max-content;
    height: max-content;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-bg-color) 0%, var(--secondary-bg-color) 100%);
}

.btn-secondary {
    background: var(--pink-color);
    color: var(--primary-bg-color);
}

.text-muted {

    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding-left: 14px;
}

.chapter-link {
    display: flex;
    color: #828282;
}

div#innertoc li[class="header-sidebar"] {
    font-family: var(--primaty-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #000 !important;
}

@media screen and (max-width:700px) {
    body {
        padding: 10px;
    }
}
