:root {
    --color-body: #fff;
    --color-box: #f7f7f7;
    --color-heading: #222;
    --color-text: #333;
    --color-text-muted: #70788c;
    --color-link: #222;
    --color-primary: #178A9C;
    --color-secondary: #ce4140;
    --color-success: #19BE6F;
    --font-normal: 400;
    --font-bold: 700;
    --radius: 10px;
    --radius-sm: 5px;
    --radius-lg: 30px;
    --radius-xl: 50px;
    --transition-time: 0.3s;
    --transition: all var(--transition-time)
}

html,
body {
    width: 100%;
    min-height: 100vh;
    min-width: 320px;
    font-size: 16px
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-body)
}

@media(max-width: 767px) {
    body {
        line-height: 1.3
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font: inherit;
    font-weight: var(--font-bold);
    color: var(--color-heading);
    line-height: 1.3;
    margin: 0 0 1em 0
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0
}

h1 {
    font-size: 48px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 12px
}

p {
    margin: 0 0 1em 0
}

p:last-child {
    margin-bottom: 0
}

a {
    text-decoration: none;
    color: var(--color-link)
}

a:hover {
    color: currentColor
}

b,
strong {
    font-weight: var(--font-bold)
}

img,
svg,
picture {
    max-width: 100%
}

svg {
    display: inline;
    height: 1em
}

ul,
ol {
    margin: 0 0 1em 0;
    padding-left: 1.2em
}

ul:last-child,
ol:last-child {
    margin-bottom: 0
}

ul li::marker,
ol li::marker {
    color: var(--color-heading)
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 1em 0;
    text-align: center
}

table:last-child {
    margin-bottom: 0
}

table th {
    font-size: 18px;
    font-weight: var(--font-bold)
}

table th,
table td {
    padding: 12px 20px
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto
}

figure {
    margin: 0 0 1em 0
}

figure:last-child {
    margin-bottom: 0
}

iframe,
video {
    display: block;
    width: 100%;
    margin: 0 0 1em 0;
    border: none;
    box-shadow: none
}

iframe:last-child,
video:last-child {
    margin-bottom: 0
}

hr {
    display: block;
    width: 100%;
    margin: 1em 0
}

.page-content {
    flex: 1 0 auto
}

.box {
    display: block;
    width: 100%;
    padding: 30px;
    background: var(--color-box);
    border-radius: var(--radius)
}

.header {
    display: block;
    width: 100%;
    position: sticky;
    z-index: 100;
    top: 0;
    margin-bottom: 20px;
    padding: 20px 0;
    background: var(--color-body);
    border-bottom: 1px solid #ccc
}

.header__wrap {
    display: flex;
    justify-content: space-between
}

.header__logo {
    display: flex;
    align-items: center;
    width: auto;
    height: 44px;
    font-size: 20px;
    line-height: 1.2
}

.header__logo img,
.header__logo svg {
    display: block;
    width: auto;
    height: 100%;
    margin-right: 15px
}

.label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: var(--font-bold);
    color: var(--color-body);
    background: var(--color-box);
    border-radius: var(--radius)
}

.label_primary {
    background: var(--color-primary)
}

.label_secondary {
    background: var(--color-secondary)
}

.label_success {
    background: var(--color-success)
}

.pagination {
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none
}

.pagination>li>a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    line-height: 1;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    color: var(--color-heading);
    background: var(--color-body);
    transition: var(--transition);
    cursor: pointer
}

.pagination>li>a:hover {
    color: var(--color-heading)
}

.pagination>li.active>a {
    background: var(--color-primary);
    color: var(--color-body)
}

.pagination>li.active>a:hover {
    color: var(--color-body)
}

.text-center {
    text-align: center !important
}

.font-bold {
    font-weight: var(--font-bold) !important
}

.h-100 {
    height: 100% !important
}

.w-50 {
    width: 50% !important
}