.barlow-46-800 {
    font-family: 'Barlow', serif;
    font-weight: 800;
    font-size: 46px;
    line-height: 100%;
}

.barlow-52-800 {
    font-family: Barlow, serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 52px;
}

.open-sans-9-600 {
    font-family: Open Sans, serif;
    font-weight: 600;
    font-size: 9px;
    line-height: 120%;
}

.open-sans-12-600 {
    font-family: Open Sans, serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
}

.open-sans-13-400 {
    font-family: Open Sans, serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
}

.open-sans-14-400 {
    font-family: Open Sans, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

.open-sans-14-600 {
    font-family: Open Sans, serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
}

.open-sans-15-400 {
    font-family: Open Sans, serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
}

.open-sans-16-600 {
    font-family: Open Sans, serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
}

.open-sans-16-400 {
    font-family: Open Sans, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.open-sans-18-600 {
    font-family: Open Sans, serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
}

.open-sans-20-700 {
    font-family: Open Sans, serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}

.inter-22-600 {
    font-family: Inter, serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
}

.uppercase {
    text-transform: uppercase;
}

html, body, p {
    margin: 0;
    padding: 0;
}

#favoriteImg {
    position: absolute;
    right: 8px;
    top: 8px;
}

.description-scroll {
    overflow: auto;
    margin-top: 30px;
    padding-bottom: 10px;

}
.description-scroll p,.description-scroll h1,.description-scroll a{
    text-align: left;
    color: var(--color-conscripts-description);
}


html, body {
    max-width: 100%;
    height: 100%;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.w-100{
    width: 100%!important;
}
.color-text-muted {
    color: var(--color-text-muted);
}

.color-list {
    color: var(--color-list);
}

.list {
    background: var(--color-list-background);
    border-radius: 15px;
    margin-top: 16px;

}

.list-header{
    padding: 8px 0;
}

.list-items{
    display: flex;
    flex-direction: column;
}

.list-item{
    padding: 11.5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-list);
    background: var(--color-bg-secondary);
    text-decoration: none;
}
.list-item p{
    text-align: left;
    text-transform: lowercase;
}

.list-item.block{
    display: block;
    padding: 0;
}

.list-item div {
    padding: 15px;
    border-bottom: 1px solid var(--color-border);
}

.list-item div:last-child {
    border-bottom: none;
}

.list-item p::first-letter {
    text-transform: uppercase;
}

.list-item:first-of-type{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.list-item:last-of-type{
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.list-item-img{
    padding: 7px;
}

.arrow-back{
    position: absolute;
    top: 8px;
    left: 8px;
}

/*card*/

.card {
    background: var(--color-card-background);
    border-radius: 20px;
    padding:6px;
    width: calc(100% - 12px);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 22px 0 #0000000F;
}

.card-header{
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.card-header img{
    padding: 15px;
    width: 70px;
}

.card-body{
    display: flex;
    text-align: unset;
    justify-content: center;
}

.card-body p {
    width: 250px;
   color: var(--card-color);
}

.card-body.mb22 {
    margin-bottom: 22px;
}
.card-body.mb24 {
    margin-bottom: 24px;
}

/*tab*/

.tab-container {
    margin-top: 16px;
    background-color: var(--color-tab-background);
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
}

.tabs {
    display: flex;
}

.tab {
    flex: 1;
    padding: 15.5px;
    cursor: pointer;
    color: var(--color-tab-text);
}
.tab.active {
    background-color: var(--color-tab-background-active);
    color: var(--color-list);
}

.tab.active:first-of-type {
    border-radius: 8px 0 0 0;
}

.tab.active:last-of-type {
    border-radius: 0 8px 0 0;
}

.tab-content {
    background-color: var(--color-tab-background-active);
    /*max-height: 35vh;*/
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom: 16px solid var(--color-tab-background-active);
}

.tab-pane {
    padding: 16px 16px 0;
    display: none;
    color: var(--color-tab-about-text);
}

.tab-pane.active {
    display: block;
}

/*config*/

.language-option{
    padding-left: 51px;
    height: 33px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

.language-option .checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 15px;
    top: 18px;
}


.language-option .checkmark-checked {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-btn);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}

.radio-border-color {
    border: 1px solid var(--color-btn);
}



.checkmark.radio-border-color .checkmark-checked{
    display: block;
}

.language-option input[type="radio"] {
    display: none;
    appearance: none;
    width: 0;
    height:0;
    position: absolute;
}


.radio-border-standart-color {
    border: 1px solid #aaa;
}

.language-option label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.language-option-main{
    color: var(--color-list);
}
.language-option-secondary{
    color: var(--color-list-secondary);
}
