/* LAYOUT */
.overflow-hidden {overflow: hidden;}
.tp .btn{
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #008a8c;
    border: 2px solid #009ea1;
    border-radius: 16px;
    width: 100%;
}
.tp .btn.btn__white{
    color: #008a8c;
    border: 2px solid white;
    background: white;
    border-radius: 16px;
}
.tp .btn.btn_c-b{
    color: #343434;
}
.tp .btn.btn_c-b:hover{
    color: #343434;
}

/* MAP */
.map-container {
    width: 100%;
    height: 370px;
}
.map-container {
    width: 100%;
    height: 370px;
    border-radius: 32px;
    overflow: hidden;
}
.ctg__map .map-container{
    position: sticky;
    top: 100px;
    max-height: 784px;
    height: calc(100vh - 150px);
}

/* CATALOG */
.ctg{
    margin-top: 32px;
    display: grid;
    grid-template-columns: 345px minmax(0, 1fr) 467px;
    grid-gap: 20px;
}
.ctg__cnt{
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
}
.sb__block{
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    padding: 0 32px;
    width: 100%;
    height: min-content;
    overflow-y: auto;
    height: -webkit-fill-available;
    max-height: calc(100vh - 196px);
}
.sb__block::-webkit-scrollbar{width:4px}
.sb__block::-webkit-scrollbar-track{background:#f1f1f1}
.sb__block::-webkit-scrollbar-thumb{background:var(--wcms-color-links);width:2px;border-radius:4px}
.sb__block::-webkit-scrollbar-thumb:hover{background:var(--wcms-color-links-hover);width:2px}
.sb__h{
    font-weight: 700;
    font-size: 17px;
    line-height: 120%;
    color: #343434;
    margin-bottom: 16px;
}
.sb__i{
    display: flex;
    justify-content: flex-end;
	flex-direction: row-reverse;
    font-size: 15px;
    line-height: 160%;
    color: #343434;
    transition: var(--transition);
    grid-gap: 12px;
}
.sidebar-filter-content {margin: -4px;}
.sidebar-filter-checkbox {padding: 4px; border-radius: 8px; transition: 0.2s background;}
.sidebar-filter-checkbox:hover {background: var(--wcms-background-ultralight);}

.sb__block ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-gap: 4px;
}
.sb__block .sidebar-filter-field:has(+ .sidebar-filter-field) {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddebeb;
}
.sb__block .sidebar-filter-field + .sidebar-filter-field {
    margin-top: 20px;
}
.sb__block .sidebar-filter-hidden-checkbox{
    display: none;
}
.sb__block .sidebar-filter-hidden-checkbox + span svg{
    display: none;
}
.sb__block .sidebar-filter-hidden-checkbox + span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 8px;
    background: rgba(0, 36, 37, 0.1);
    transition: var(--transition);
}
.sb__block .sidebar-filter-hidden-checkbox:checked + span{
    background: #009ea1;
}
.sb__block .sidebar-filter-hidden-checkbox:checked + span svg{
    display: block;
}
.sb__i:has(.sidebar-filter-hidden-checkbox:checked){
    color: #009ea1;
}
.sb__block button[type="submit"]{
    border: 2px solid #009ea1;
    border-radius: 16px;
    padding: 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
    background: white;
    margin-top: 24px;
    transition: var(--transition);
}
.sb__block button[type="submit"]:active{
    background: #009ea1;
    color: #fff;
}
.sb__close{
    display: none;
    width: 32px;
    height: 32px;
}
.sb__menu{
    display: none;
}

.sb{
    padding: 32px 0;
    border: 1px solid #ddebeb;
    border-radius: 32px;
    background: white;
    max-height: calc(100vh - 130px);
    position: sticky;
    top: 100px;
    height: fit-content;
}

@media (max-width: 1350px) {
    .ctg{
        grid-template-columns: 345px minmax(0, 1fr);
    }
    .ctg__map{
        display: none;
    }
}
@media (max-width: 992px){
    .sb{
        display: none;
    }
    .ctg{
        grid-template-columns: minmax(0, 1fr);
    }
    .sb.active{
        display: block;
        position: fixed;
        top: 85px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        border-radius: 0;
        border: none;
        max-height: inherit;
        padding: 0;
        height: auto;
        padding-bottom: 50px;
		overflow: hidden;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }
    .sb__block{
        height: 100%;
        max-height: none;
        border: none;
        border-radius: 0;
        padding: 23px;
    }
    .sb__close{
        display: flex;
        align-items: center;
        /*justify-content: center;*/
        /*position: absolute;*/
        right: 16px;
        top: 16px;

        background: white;
        width: 100%;
        justify-content: flex-end;
        padding: 23px;
    }
    .sb__menu{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sb__menu-a{
        display: flex;
        align-items: center;
        grid-gap: 8px;
        font-weight: 400;
        font-size: 17px;
        color: #009ea1;
        cursor: pointer;
    }
}

/* CARD */
.card{
    width: 100%;
    overflow: hidden;
    border: 1px solid #ddebeb;
    border-radius: 24px;
    background: #fff;
    transition: var(--transition);
}
.card:hover, .card.highlighted{
    background: #f7ffff;
}
.card__cnt{
    display: flex;
    flex-direction: column;
    padding: 24px 32px 8px;
}
.card__img{
    width: 100%;
    height: 271px;
    object-fit: cover;
    border-radius: 24px;
}
.card__h{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
    box-orient: vertical;
}
.card__top{
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-gap: 16px;
    margin-top: 12px;
    align-items: center;
}
.card__stars{
    display: flex;
    align-items: center;
    grid-gap: 2px;
}
.card-stars-stripe {width: 100%; height: 1px; background: var(--wcms-color-ultralight);}
.card__visited{
    display: flex;
    align-items: center;
    grid-gap: 7px;
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
    opacity: 30%;
    filter: grayscale(1);
}
.card__visited.visited{
    opacity: 100%;
    filter: grayscale(0);
}
.card__desc{
    font-size: 15px;
    line-height: 140%;
    color: #343434;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
}
.card__desc p {margin-bottom: 0;}
.card__del{
    margin-bottom: 16px;
    width: 100%;
    height: 1px;
}
.card__str{
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    grid-gap: 8px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 130%;
    color: var(--wcms-color-light);
}
.card__str svg {width: 20px; height: 20px;}
.card__str a{color: var(--wcms-color-light);}
.card__a {
    display: flex;
    align-items: center;
    height: 48px;
    margin-top: 12px;
}
.card .card__a a{

    display: block;
    opacity: 1;
    /*display: none;*/
    /*opacity: 0;*/
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    color: #009ea1;
    transition: var(--transition);
}
.card:hover .card__a a{
    display: block;
    opacity: 1;
}

.thumb{
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}
.thumb__img{
    position: relative;
    height: 248px;
    display: flex;
    align-items: flex-end;
    padding: 17px 8px;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover!important;
}
.thumb__img-w{
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);*/
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition);

    /* filter */

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.09%, rgba(0, 0, 0, 0.3) 100%);

}
.thumb__card:hover .thumb__img-w{
    transform: scale(1.1);
}
.thumb__cnt{
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 16px;
    min-height: 263px;
    flex: 1;
}
.thumb__name{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
}
.thumb__desc{
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.thumb__a{
    margin-top: auto;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
    display: block;
    transition: var(--transition);
    opacity: 0;
}
.thumb:hover .thumb__a{
    opacity: 1;
    /*display: block;*/
}
.thumb__tags{
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    grid-gap: 8px;
}
.thumb__tag{
    width: fit-content;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.thumb__dt{
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
}
.thumb__i{
    display: flex;
    align-items: center;
    grid-gap: 8px;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.thumb__i svg{
    min-width: 24px;
}


@media (max-width: 992px) {
    .thumb__cnt{
        min-height: 240px;
    }
    .thumb__name{
        font-size: 16px;
    }
    .thumb__desc{
        font-size: 14px;
    }
    .thumb__a{
        font-size: 14px;
    }
}

/* tportal */

.tp__add{
    margin-top: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 20px;
	font-size: 15px;
    line-height: 170%;
    color: #979a9a;
}
.tp__rt{
    display: flex;
    grid-gap: 8px;
}
.tp__stars{
    display: flex;
    align-items: center;
    grid-gap: 2px;
}
.tp__visited{
    display: flex;
    align-items: center;
    grid-gap: 4px;
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
}
.tp__visited.visited{
    color: #009ea1;
}
.tp__visited svg{
    opacity: 30%;
    filter: grayscale(1);
}
.tp__visited.visited svg{
    opacity: 100%;
    filter: grayscale(0);
}


.tp__section{
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
}
.tp__h{
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #343434;
}
.tp__text{
    font-size: 20px;
    line-height: 158%;
    color: #343434;
}
.tp__feature{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 158%;
    color: #343434;
    grid-gap: 8px;
}
.tp__str{
    display: flex;
    grid-gap: 16px;
    font-size: 17px;
    line-height: 145%;
    color: #343434;
}
.tp__str a{
    color: #009ea1;
}
.tp__str a:hover{
    color: #009ea1;
}
.tp__data{
    padding: 32px;
    display: flex;
    flex-direction: column;
    grid-gap: 32px;
}
.tp__side{
    display: flex;
    flex-direction: column;
    grid-gap: 48px;
}
.tp__ban{
    position: relative;
    width: 100%;
    border-radius: 32px;
    padding: 12px;
    background-size: contain!important;
    background-repeat: no-repeat!important;
    overflow: hidden;
}
.tp__ban-cnt{
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.tp__ban-h{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #fff;
}
.tp__ban-silver .tp__ban-h{
    font-size: 28px;
    line-height: 110%;
    color: #343434;
}
.tp__ban-desc{
    margin-top: 8px;
    font-size: 20px;
    line-height: 135%;
    color: #fee8bb;
}
.tp__ban-silver .tp__ban-desc{
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    color: #343434;
}
.tp__ban-desc.tp__ban-desc_green{
    color: #017b7d;
}
.tp__ban-text{
    margin-top: 24px;
    font-size: 20px;
    line-height: 135%;
    color: #fff;
}
.tp__ban-silver .tp__ban-text{
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #343434;
}
.tp__ban-text span{
    font-size: 17px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.85);
}
.tp__ban .btn{
    margin-top: 24px;
}
.tp__i{
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: 0;
}
.tp__objcts{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 20px;
}
.tp__obj{
    border: 1px solid #ddebeb;
    border-radius: 24px;
    min-height: 132px;
    background: white;
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}
.tp__obj:hover{
    background: #ebfafa;
}
.tp__obj > img{
    object-fit: cover;
    border-radius: 24px;
}
.tp__obj-name{
    font-size: 17px;
    line-height: 120%;
    color: #343434;
}
.tp__obj-str{
    font-size: 14px;
    display: flex;
    grid-gap: 4px;
    color: #343434;
}
.tp__obj-str svg{
    height: 16px;
}
.tp__obj-cnt{
    display: flex;
    flex-flow: column;
    padding: 12px 16px;
    grid-gap: 6px;
}
.tp__obj-visited{
    margin-top: auto;
}
@media (max-width: 768px) {
    .tp__objcts{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* CATALOG */
.card-image-wrap {position: relative; overflow: hidden; border-radius: 24px;}
.card-image-overlay {position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, var(--wcms-background-contrast) 100%);}
.card-image-partners {position: absolute; bottom: 16px; left: 16px;}
.card-image-partners img {max-height: 64px; display: inline-block; margin-right: 16px;}

/* ROUTES */
.rts-object-list {margin: 0; padding: 0; list-style: none; margin-top: 8px;}
.rts-object li {margin-bottom: 8px;}
.rts-object li:last-child {margin-bottom: 0;}
.rts-object .card__str svg {color: var(--wcms-color-links);}

/* OBJECT IMAGES */
.tp-gallery-image {height: 370px; background-size: cover !important; background-position: center center !important;}
.tp-swiper-main {border-radius: 32px; position: relative; border: 1px solid var(--wcms-color-ultralight);}
.tp-swiper-controls {position: absolute; font-size: 0; bottom: 24px; right: 24px; z-index: 1;}
.tp-swiper-arrow, .tp-swiper-expand-icon {display: inline-block; padding: 19px; font-size: 0; opacity: 0.7; border-radius: 26px; background: var(--wcms-background-primary); color: var(--wcms-color-primary); transition: 0.2s background, color, opacity;}
.tp-swiper-arrow:hover, .tp-swiper-expand-icon:hover {opacity: 1;}
.tp-swiper-arrow.prev {margin-right: 12px;}
.tp-swiper-arrow svg {width: 14px; height: 14px;}
.tp-swiper-arrow.next svg {transform: rotate(180deg);}
.tp-swiper-expand-icon svg {width: 20px; height: 20px;}
.tp-swiper-expand-icon {padding: 16px;}
.tp-swiper-expand {position: absolute; top: 24px; right: 24px; z-index: 1;}
.tp-swiper-thumbs {margin-top: 16px;}
.tp-swiper-thumbs .swiper-slide {width: 100px; border-radius: 16px;}
.tp-gallery-thumb {height: 64px; background-size: cover !important; background-position: center center !important; border-radius: 16px; border: 1px solid var(--wcms-background-ultralight);}
.swiper-slide-thumb-active .tp-gallery-thumb {border: 1px solid var(--wcms-color-links);}
.tp-wrap .card-image-overlay, .tp-wrap .card-image-partners {z-index: 1;}

/* OBJECT CONTENT */
.tp-wrap {display: grid; grid-template-columns: minmax(0, 1fr) 550px; grid-gap: 32px; margin-top: 32px;}
.tp-wrap.no-gallery {grid-template-rows: 0 minmax(0, 1fr); grid-row-gap: 0;}
.tp-content {display: flex; flex-direction: column; grid-gap: 32px;}
.tp-sidebar {display: flex; flex-direction: column; grid-gap: 48px; grid-row: span 2 / span 2;}
.tp-sidebar-inner {border: 1px solid #ddebeb; border-radius: 32px; background: #fff; overflow: hidden;}
.tp-sidebar-inner.sticky {position: sticky; top: 91px;}
.tp-sidebar-inner .sys-btn {font-size: 15px;}
.tp-description {text-align: justify; padding: 32px; padding-bottom: 16px; background: var(--wcms-background-primary); border: 1px solid var(--wcms-color-ultralight); border-radius: 32px; line-height: 150%;}
.tp-data-items {display: flex; flex-direction: column; grid-gap: 16px;}
.tp-data-item {display: grid; grid-template-columns: 20px minmax(0, 1fr); grid-gap: 16px; font-size: 15px; line-height: 130%;}
.tp-data-item svg {width: 20px; height: 20px; color: var(--wcms-color-links);}
.tp-features {padding: 32px; background: var(--wcms-background-primary); border: 1px solid var(--wcms-color-ultralight); border-radius: 32px; line-height: 150%;}
.tp-features-header {font-size: 20px; margin-bottom: 16px; font-weight: bold;}
.tp-features-data {display: grid; gap: 8px;}
.tp-features-feature {display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--wcms-color-ultralight);}
.tp-features-feature:last-child {padding-bottom: 0; border-bottom: none;}
.tp-stripe {margin-top: 40px; height: 1px; background: var(--wcms-color-ultralight);}
.tp-bg-image {height: 40px; text-align: left;}
.tp-related {position: relative;}
.tp-related-cpt {display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px;}
.tp-related-cpt h2 {font-size: 48px; line-height: 110%;}
.tp-related-cpt a {display: inline-block;}
.tp-related-cpt-left {display: flex; align-items: center; gap: 32px;}
.tp-related .slick-arrow:hover {background: var(--wcms-color-links); color: var(--wcms-background-primary);}
.tp-related-item-location {display: flex; gap: 8px; margin-bottom: 16px;}
.tp-related-item-location svg {width: 18px; height: 18px;}
.tp-related-item-timing {display: flex; gap: 8px;}
.tp-related-item-timing svg {width: 18px; height: 18px;}
.tp-related-cpt-url.bottom-url {margin-top: 16px; display: none;}
.tp-related-cpt-url.bottom-url a {display: block;}
.tp-related-item .sys-thumb-i-dt {margin-top: 24px;}
.tp-related-item .sys-thumb-i-name {margin-top: 24px;}
.tp-related-item .sys-thumb-i-more {padding-top: 0; opacity: 0; transition: 0.2s opacity;}
.tp-related-item:hover .sys-thumb-i-more {opacity: 1;}
.tp-related-rating {display: grid; grid-template-columns: 112px minmax(0, 1fr); grid-gap: 16px; margin: 15px 32px; margin-top: 12px; align-items: center;}
.tp-related-rating-stars {display: flex; align-items: center; grid-gap: 2px;}
.tp-related-rating-stars svg {height: 20px; width: 20px;}
.tp-related-rating-stripe {width: 100%; height: 1px;background: var(--wcms-color-ultralight);}
.tp-ralated-address {display: grid; grid-template-columns: 20px minmax(0, 1fr); grid-gap: 16px; margin: 15px 32px; min-height: 80px; font-size: 15px; line-height: 130%;}
.tp-h-pp-caption {font-size: 24px; font-weight: bold; margin-bottom: 16px;}
.tp-h-pp-item {line-height: 145%; color: var(--wcms-color-primary); display: flex; grid-gap: 3px; margin-bottom: 16px;}
.tp-h-pp-image img {max-width: 100%; margin-bottom: 16px;}
.history-image-form {margin-top: 32px;}
.history-image-message {margin-top: 16px; padding: 16px; background: var(--wcms-color-warning); border-radius: 16px; color: var(--wcms-background-primary);}
.history-image-form button[type="submit"] {margin-top: 16px;}
.history-image-success {text-align: center; margin-top: 32px; display: none;}
.history-image-success-icon svg {width: 128px; height: 128px; color: var(--wcms-color-success); margin-bottom: 16px;}
.history-image-success-text {line-height: 145%;}
@media (max-width: 1250px) {
    .tp-wrap {grid-template-columns: minmax(0, 1fr) 350px;}
}
@media (max-width: 992px) {
    .tp-wrap {grid-template-columns: minmax(0, 1fr);}
	.tp-wrap.no-gallery {grid-row-gap: 32px;}
	.tp-sidebar {grid-row: initial;}
	.tp-sidebar-inner.sticky {position: initial;}
}
@media (max-width: 768px) {
	.tp-sidebar {grid-row: initial;}
	.tp-features-feature {grid-template-columns: minmax(0, 1fr);}
	.tp-related-cpt {display: initial;}
	.tp-related-cpt h2 {font-size: 24px;}
	.tp-related-cpt-left {justify-content: space-between;}
	.tp-related-cpt-url {display: none;}
	.tp-related-cpt-url.bottom-url {display: block;}
}
@media (max-width: 576px) {
	.tp-gallery-image {height: 320px;}
	.map-container {height: 320px;}
	.tp-related-cpt-left {display: initial;}
	.tp-related .sys-slick-controls {display: inline-block; margin-bottom: 16px;}
}

/* ROUTE OBJECTS */
.tp-rt-objects-list {display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; align-items: stretch;}
.tp-rt-object {background: var(--wcms-background-primary); border: 1px solid var(--wcms-color-ultralight); border-radius: 32px; overflow: hidden; display: grid; grid-template-columns: 140px minmax(0, 1fr);}
.tp-rt-data {padding: 16px;}
.tp-rt-object-image {background-size: cover !important; background-position: center center !important; border-radius: 32px;}
.tp-rt-data-name {font-size: 17px; font-weight: bold; color: var(--wcms-color-primary);}
.tp-rt-data-rating {margin-top: 16px;}
.tp-rt-data .tp-data-item {margin-top: 16px;}

@media (max-width: 576px) {
	.tp-rt-object {grid-template-columns: 1fr;}
	.tp-rt-object-image {height: 200px;}
	.tp-rt-data-rating.no-rate {display: none;}
}

/* AUDIO */
.tp-audio-wrap {padding: 32px; background: var(--wcms-background-primary); border: 1px solid var(--wcms-color-ultralight); border-radius: 32px;}
.tp-audio-cpt {font-weight: bold; margin-bottom: 16px;}

/* HISTORY POPUP LEGACY */
.hp {padding-bottom: 32px;}
.hp input[type="email"]{
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    padding: 0 16px;
    width: 100%;
    height: 52px;
    font-size: 20px;
}
.hp input[type="email"]::placeholder{
    color: #979a9a;
}
.hp .input-file {
    position: relative;
    display: flex;
    grid-gap: 8px;
    margin-top: 16px;
}
.hp .input-file-text {
    line-height: 40px;
    text-align: left;
    float: left;
    box-sizing: border-box;
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    padding: 0 16px;
    height: 52px;
    min-width: 280px;
    flex: 1;
    font-weight: 400;
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #999
}
.hp .input-file-btn {
    height: 52px;
    min-width: 198px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    vertical-align: middle;
    box-sizing: border-box;
    margin: 0;
    transition: background-color 0.2s;
    border: 2px solid #009ea1;
    border-radius: 16px;
    padding: 9px;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
}
.hp .input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}
.hp__form-text{
    display: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: #009ea1;
}


/*
.hp{
    max-width: 672px;
    width: 100%;
    background: #fff;
    border-radius: 32px;
    position: relative;
}
.hp img{
    display: block;
    width: 100%;
}
.hp__h{
    padding: 32px 40px;
    border-radius: 32px 32px 88px 88px;
    background: #fdb939;
}
.hp__t{
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    color: #fff;
}
.hp__cnt{
    padding: 32px 48px;
    display: flex;
    flex-flow: column;
    grid-gap: 16px;
}
.hp__t2{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
}
.hp__text{
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: #343434;
    display: flex;
    grid-gap: 3px;
}
.hp__form-text{
    display: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: #009ea1;
}
.hp input[type="email"]{
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    padding: 0 16px;
    width: 100%;
    height: 52px;
    font-size: 20px;
}
.hp input[type="email"]::placeholder{
    color: #979a9a;
}
.hp__close{
    position: absolute;
    right: 24px;
    top: 24px;
    border-radius: 50%;
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hp__pp{
    overflow-y: auto;
    max-height: 100dvh;
}

@media (max-width: 700px){
    .hp__pp{
        width: 100%;
    }
}
@media (max-width: 992px){
    .hp__t{
        font-size: 24px;
        line-height: 120%;
    }
    .hp .input-file{
        flex-wrap: wrap;
    }
    .hp .input-file-text{
        min-width: 100%;
    }
    .hp button[type="submit"]{
        font-size: 18px;
    }
    .hp__cnt{
        padding: 32px 24px;
    }
}
*/