#popParent {
    display: none;
}
.pop-parent {
    z-index: 9999;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.35);
}
.pop-parent .pop {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
}
.pop-parent .m-ratioBox-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.pop-parent .m-ratioBox-wrap .m-ratioBox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--sub_color01);
}
.pop-parent .m-ratioBox-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
.pop-parent .m-ratioBox-wrap iframe {
    width: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
.pop-parent .pop .btn-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background-color: black;
    cursor: pointer;
}
.pop-parent .pop .btn-toggle img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: all 0.3s;
}
.pop-parent .pop-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    background-color: #3c3c3c;
}
.pop-parent .pop-btns a {
    color: #fff;
    padding: 7px 14px;
}
.pop-parent .pop-btns #oneday_check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
.pop-parent .pop-btns #oneday_check + label {
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.pop-parent .pop-btns #oneday_check + label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border: 1px solid #fff;
}
.pop-parent .pop .swiper-btn-control {
    width: 8px;
    height: 11px;
    margin-left: 16px;
    position: relative;
    top: 2px;
}
.pop-parent .popupSwiper {
    background-color: #fff;
}
.pop-parent .swiper-pagination {
    pointer-events: none;
    top: 21px;
    left: auto;
    right: 20px;
    width: fit-content;
}
.pop-parent .swiper-pagination-bullet {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 0;
    border: 1px solid white;
    opacity: 0.5;
    background-color: transparent;
}
.pop-parent .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}
.pop-parent .active {
    right: -400px;
}
.pop-parent .active .btn-toggle {
    transform: rotate(180deg);
}
.pop-parent .pop .btn-close {
    width: 40px;
    height: 40px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop-parent .pop .btn-close > svg {
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .pop-parent {
        padding-bottom: 32px;
    }
    .pop-parent .pop {
        width: calc(100% - 32px);
        max-width: 500px;
    }
}

/* 페이지 공통 트렌지션 */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

/* 타입별 */
[data-aos="fade-left"] {
    transform: translateX(40px);
}
[data-aos="fade-right"] {
    transform: translateX(-40px);
}

@media screen and (max-width: 1280px) {
    [data-aos] {
        transform: translateY(20px);
    }
    [data-aos="fade-left"] {
        transform: translateX(20px);
    }
    [data-aos="fade-right"] {
        transform: translateX(-20px);
    }
}

/* 버튼 1 - 파란배경 > 호버시 짙은 파란색 */
.btn-transition-1 {
    transition: all 0.3s ease;
    background-color: #1192d1;
}
.btn-transition-1 * {
    color: #fff;
}
@media (hover: hover) {
    .btn-transition-1:hover,
    .box-transition:hover .btn-transition-1 {
        background-color: #0e76aa;
    }
}

/* 버튼 2 - 회색 테두리 > 호버시 파란색 테두리 */
.btn-transition-2,
.btn-transition-2 * {
    transition: all 0.3s ease;
}
.btn-transition-2 {
    border-color: #e4e4e4;
    background-color: #fff;
}
@media (hover: hover) {
    .btn-transition-2:hover,
    .box-transition:hover .btn-transition-2 {
        border-color: #1192d1;
    }
    .btn-transition-2:hover *,
    .box-transition:hover .btn-transition-2 * {
        color: #1192d1;
    }
}

/* 버튼 3 - 파란테두리, 흰색배경 > 호버시 파란배경, 흰색텍스트 */
.btn-transition-3,
.btn-transition-3 * {
    transition: all 0.3s ease;
}
.btn-transition-3 {
    border-color: #1192d1;
    /* background-color: #fff; */
}
.btn-transition-3 * {
    color: #1192d1;
}
@media (hover: hover) {
    .btn-transition-3:hover,
    .box-transition:hover .btn-transition-3 {
        background-color: #1192d1;
    }
    .btn-transition-3:hover *,
    .box-transition:hover .btn-transition-3 * {
        color: #fff;
    }
}

/* 버튼 4 - 파란배경, 흰글씨 > 호버시 흰배경, 파란텍스트 */
.btn-transition-4,
.btn-transition-4 * {
    transition: all 0.3s ease;
}
.btn-transition-4 {
    border-color: #1192d1;
    background-color: #1192d1;
}
.btn-transition-4 * {
    color: #ffffff;
}
@media (hover: hover) {
    .btn-transition-4:hover,
    .box-transition:hover .btn-transition-4 {
        background-color: #ffffff;
    }
    .btn-transition-4:hover *,
    .box-transition:hover .btn-transition-4 * {
        color: #1192d1;
    }
}

/* 박스 호버시 텍스트, 배경, 이미지 변화 */
.box-transition,
.box-transition * {
    transition: all 0.3s ease;
}
.box-transition .fade-up {
    opacity: 0;
    transform: translateY(40px);
}
@media (hover: hover) {
    .box-transition:hover .text {
        color: #1192d1;
    }
    .box-transition:hover .bg {
        background-color: #0e76aa;
    }
    .box-transition:hover .img {
        transform: scale(1.15);
    }
    .box-transition:hover .fade-up {
        opacity: 1;
        transform: translateY(0);
    }
    .box-transition:hover .txt-white {
        color: #fff;
    }
    .box-transition:hover .translate-up {
        transform: translateY(-80px);
    }
    .box-transition:hover .hover-hide {
        display: none;
    }
    .box-transition:hover .hover-overflow-visible {
        overflow: visible;
    }
    .box-transition:hover .hover-text-up {
        transform: translateY(-50%);
    }
    .box-transition:hover .hover-opacity-0 {
        opacity: 0;
    }
}

@media screen and (max-width: 1280px) {
    .box-transition .fade-up {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 박스 호버시 보더 변화 */
.border-transition {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.border-transition::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: inherit;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s ease;
}
@media (hover: hover) {
    .box-transition:hover .border-transition::after,
    .box-transition.border-transition:hover::after {
        border-color: #1192d1;
    }
}

/* 박스 호버시 어두운 톤 */
.dark-transition {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.dark-transition::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
@media (hover: hover) {
    .box-transition:hover .dark-transition::before,
    .box-transition.dark-transition:hover::before {
        background-color: #494a4e80;
    }
}
@media screen and (max-width: 1024px) {
    .dark-transition::before {
        background-color: #494a4e80;
    }
}

/* 박스 호버시 이미지 변화 */
.img-transition .img-1 {
    opacity: 1;
}
.img-transition .img-2 {
    opacity: 0;
}
@media (hover: hover) {
    .box-transition:hover .img-transition .img-1,
    .box-transition.img-transition:hover .img-1 {
        opacity: 0;
    }
    .box-transition:hover .img-transition .img-2,
    .box-transition.img-transition:hover .img-2 {
        opacity: 1;
    }
}

/* 메인페이지 */
.index-slide {
    margin: 0;
}
.s1 .title .left h2 {
    transform: translateY(100%);
}
.s1 .title .right h2 {
    transform: translateY(100%);
}
.s1 .title.active .left h2 {
    transform: translateY(0%);
}
.s1 .title.active .right h2 {
    transform: translateY(0%);
}

.index-slide .index-slide-pagiantion {
    /* opacity: 0; */
    position: absolute;
    left: 8.125vw;
    bottom: 56px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9;
}
.index-slide .index-slide-pagiantion .swiper-pagination-bullet {
    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: none;
    position: relative;
    opacity: 1;
    transition: 0.3s;
}
.index-slide .index-slide-pagiantion .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #494a4e;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
}
.index-slide .index-slide-pagiantion .swiper-pagination-bullet-active {
    border-color: #494a4e;
}

@media screen and (max-width: 1024px) {
    .index-slide .index-slide-pagiantion {
        left: 16px;
        bottom: 40px;
        gap: 8px;
    }
    .index-slide .index-slide-pagiantion .swiper-pagination-bullet {
        width: 24px;
        height: 24px;
    }
    .index-slide .index-slide-pagiantion .swiper-pagination-bullet::after {
        width: 6px;
        height: 6px;
    }
}

/* 메인페이지 */
.fadeup {
    opacity: 1;
    translate: 0 0;
    transition: all 0.3s ease;
}
.s2-slide {
    margin: 0;
    height: 1133px;
    overflow: hidden;
    margin-top: -322px;
    padding-top: 130px;
}
.s2-slide:before {
    width: 924px;
    height: 924px;
    border: 2px solid #eaeaeb;
    border-radius: 100%;
    content: "";
    position: absolute;
    right: -25%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.s2-slide .swiper-wrapper {
    height: 100%;
}
.s2-slide .swiper-slide {
    display: flex;
    align-items: center;
    height: auto;
}
.s2-slide .swiper-slide .txt-wrap {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s linear;
    padding-right: 80px;
}
.s2-slide .swiper-slide-active .txt-wrap {
    height: auto;
    opacity: 1;
}
.s2-slide .swiper-slide .img-wrap {
    transform: scale(0.5);
    transform-origin: right center;
    transition: 0.3s linear;
    opacity: 0;
}
.s2-slide .swiper-slide-active .img-wrap {
    transform: scale(1);
}
.s2-slide .swiper-slide-active .img-wrap,
.s2-slide .swiper-slide-next .img-wrap,
.s2-slide .swiper-slide-prev .img-wrap {
    opacity: 1;
}

.s2-slide .swiper-slide .img-wrap video {
    opacity: 0;
}
.s2-slide .swiper-slide-active .img-wrap video {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .s2-slide {
        height: auto;
        margin-top: 0;
        padding-top: 0;
    }
    .s2-slide:before {
        display: none;
    }
    .s2-slide .swiper-slide {
        flex-flow: column-reverse;
        justify-content: flex-end;
        gap: 40px;
    }
    .s2-slide .swiper-slide .txt-wrap {
        padding-right: 0;
        height: auto;
    }
    .s2-slide .swiper-slide .img-wrap {
        transform: scale(1);
    }
}

.s3-slide .s3-slide-pagination {
    position: static;
    display: flex;
    width: fit-content;
    align-items: baseline;
    gap: 2px;
    color: #ffffff50;
}
.s3-slide .s3-slide-pagination .swiper-pagination-current {
    font-size: 24px;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .s3-slide .s3-slide-pagination .swiper-pagination-current {
        font-size: 16px;
    }
}

.s4-slide {
    padding-left: calc((100% - 1440px) / 2);
    padding-right: 40px;
}
.s4-slide .swiper-slide {
    width: 576px;
}

@media screen and (max-width: 1024px) {
    .s4-slide {
        padding-left: 16px;
        padding-right: 16px;
    }
    .s4-slide .swiper-slide {
        width: 100%;
    }
}

.s5-slide {
    position: relative;
    padding-top: 80px;
    margin: 0;
    width: 100%;
}
.s5-track {
    display: flex;
    align-items: center;
}

.s5-slide .s5-item {
    transform: scale(0.667);
    transition: all 0.3s ease;
    opacity: 0.5;
    width: 400px;
}
.s5-slide .s5-item .img-wrap {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background-color: transparent;
}
.s5-slide .s5-item .img-wrap .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.s5-slide .s5-item .sub-title,
.s5-slide .s5-item .btn {
    display: none;
}
.s5-slide .s5-item.slick-current {
    transform: scale(1);
    opacity: 1;
}
.s5-slide .s5-item.slick-current .img-wrap {
    background-color: #f5f5f5;
}
.s5-slide .s5-item.slick-current .img-wrap .img {
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    top: 40px;
    left: 40px;
    transform: scale(1);
}
.s5-slide .s5-item.slick-current .sub-title,
.s5-slide .s5-item.slick-current .btn {
    display: flex;
}

@media (hover: hover) {
    .s5-slide .s5-item .img-wrap .img,
    .s5-slide .s5-item .text,
    .s5-slide .s5-item .btn {
        transition: all 0.3s ease;
    }
    .s5-slide .s5-item.slick-current:hover .img {
        transform: scale(1.15);
    }
    .s5-slide .s5-item.slick-current:hover .text {
        color: #1192d1;
    }
    .s5-slide .s5-item.slick-current:hover .btn {
        background-color: #1192d1;
    }
    .s5-slide .s5-item.slick-current:hover .btn * {
        color: #fff;
    }
}
@media screen and (max-width: 1536px) {
    .s5-slide .s5-item {
        width: 320px;
    }
    .s5-slide .s5-item .img-wrap {
        width: 360px;
        height: 360px;
    }
}
@media screen and (max-width: 1024px) {
    .s5-slide {
        padding-top: 40px;
    }
}
@media screen and (max-width: 480px) {
    .s5-slide .s5-item {
        width: 100%;
    }
    .s5-slide .s5-item .img-wrap {
        width: 240px;
        height: 240px;
    }
}

/* Error alert shake animation */
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.rotate {
    animation: rotate 5s infinite linear;
}

/* products detail */
.prod-s4-slide,
.related-slide {
    padding-left: calc((100% - 1280px) / 2);
    padding-right: 40px;
}
.workflow-slide {
    padding-left: calc((100% - 1440px) / 2);
    padding-right: 40px;
}
.workflow-slide .swiper-slide {
    width: 448px;
}
.prod-s4-slide .dark-transition::before {
    z-index: 1;
}
@media screen and (max-width: 1440px) {
    .workflow-slide {
        padding-left: 16px;
        padding-right: 16px;
    }
    .workflow-slide .swiper-slide {
        width: 400px;
    }
}
@media screen and (max-width: 1280px) {
    .prod-s4-slide,
    .related-slide {
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media screen and (max-width: 1024px) {
    .workflow-slide .swiper-slide {
        width: 320px;
    }
}

/* service _ design center */
.loop-slide .swiper-wrapper {
    transition-timing-function: linear !important;
}
.accordion-item .item-after {
    display: none;
    height: 100%;
}
.accordion-item .item-after-title {
    display: none;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-item .item-after * {
    transition: none;
}
.accordion-item.active .item-before,
.accordion-item.other .item-before {
    display: none;
}
.accordion-item.active .item-after,
.accordion-item.other .item-after-title {
    display: block;
}
.accordion-item.active::after {
    border-color: #1192d1;
    z-index: -1;
}
.accordion-item.active::before {
    display: none;
}
.accordion-item.active .img-1,
.accordion-item.active .img-2 {
    display: none;
}

@media (hover: hover) {
    .accordion-item:hover .item-before p,
    .accordion-item:hover .item-after-title {
        color: #1192d1;
    }
}

@media screen and (max-width: 1024px) {
    .accordion-item .item-after-title {
        position: static;
        transform: none;
    }
}

/* service _ download center */
.img-slide {
    padding-bottom: 20px;
}
.img-slide .img-slide-pagination {
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.img-slide .img-slide-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #494a4e25;
    margin: 0;
    opacity: 1;
}
.img-slide .img-slide-pagination .swiper-pagination-bullet-active {
    background-color: #1192d1;
}
#category_tab .tab[data-status="more"],
.category_tab .tab[data-status="more"] {
    display: none;
}
#category_tab.active .tab[data-status="more"],
.category_tab.active .tab[data-status="more"] {
    display: flex;
}
#category_tab.active .more-hide-btn,
.category_tab.active .more-hide-btn,
.category_group.active .more-hide-btn {
    display: block;
}
#category_tab.active .more-btn,
.category_tab.active .more-btn,
.category_group.active .more-btn {
    display: none;
}

.category_group.active .category_content {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .img-slide {
        padding-bottom: 0;
    }
    .img-slide .img-slide-pagination {
        bottom: 16px;
    }
    .img-slide .img-slide-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* about HASS academy */
.banner-slide .banner-slide-pagination {
    position: static;
    display: flex;
    width: fit-content;
    align-items: baseline;
    gap: 2px;
    color: #ffffff50;
}
.banner-slide .banner-slide-pagination .swiper-pagination-current {
    font-size: 24px;
    color: #fff;
}

/* product evolution */
.evolution-item {
    position: relative;
}
.evolution-item:nth-child(2n) {
    flex-flow: column-reverse;
}
.evolution-item * {
    transition: all 0.3s ease;
}
.evolution-item .item-bar {
    display: block;
    width: 0;
    height: 768px;
    border-left: 2px dashed #eaeaeb;
    position: absolute;
    left: 0;
    transition: 0.2s;
}
.evolution-item:nth-child(2n) .item-bar {
    top: 40px;
}
.evolution-item:nth-child(2n-1) .item-bar {
    bottom: 40px;
}
.evolution-item:nth-child(1) .item-bar,
.evolution-item:nth-child(4) .item-bar,
.evolution-item:nth-child(6) .item-bar,
.evolution-item:nth-child(7) .item-bar {
    height: 484px;
}
.evolution-item:nth-child(1) .item-bar,
.evolution-item:nth-child(7) .item-bar {
    bottom: 324px;
}
.evolution-item:nth-child(4) .item-bar,
.evolution-item:nth-child(6) .item-bar {
    top: 324px;
}
.evolution-item .item-bar::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #eaeaeb;
    position: absolute;
    left: -9px;
    transition: 0.2s;
}
.evolution-item:nth-child(2n) .item-bar::after {
    bottom: -8px;
}
.evolution-item:nth-child(2n-1) .item-bar::after {
    top: -8px;
}
.evolution-item.active .item-bar,
.evolution-item:first-child .item-bar {
    border-color: #1192d1;
}
.evolution-item.active .item-bar::after,
.evolution-item:first-child .item-bar::after {
    background-color: #1192d1;
}

.evolution-item.active .year {
    color: #1192d1;
}
.evolution-item:nth-child(2n) .item-img-wrap {
    justify-content: flex-end;
}
.evolution-item:nth-child(2n-1) .item-txt-wrap {
    justify-content: flex-end;
}

@media screen and (max-width: 1536px) {
    .evolution-item .item-bar {
        height: 616px;
    }
    .evolution-item:nth-child(2n) .item-bar {
        top: 40px;
    }
    .evolution-item:nth-child(2n-1) .item-bar {
        bottom: 40px;
    }
    .evolution-item:nth-child(1) .item-bar,
    .evolution-item:nth-child(4) .item-bar,
    .evolution-item:nth-child(6) .item-bar {
        height: 361px;
    }
    .evolution-item:nth-child(1) .item-bar {
        bottom: 256px;
    }
    .evolution-item:nth-child(4) .item-bar,
    .evolution-item:nth-child(6) .item-bar {
        top: 256px;
    }
    .evolution-item .item-bar::after {
        width: 12px;
        height: 12px;
        left: -7px;
    }
    .evolution-item:nth-child(2n) .item-bar::after {
        bottom: -6px;
    }
    .evolution-item:nth-child(2n-1) .item-bar::after {
        top: -6px;
    }
}
@media screen and (max-width: 1024px) {
    .evolution-item:nth-child(2n) {
        flex-flow: column;
    }
    .evolution-item .item-bar {
        display: none;
    }
}

/* precision processing */
.facility-slide .facility-slide-pagination {
    bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.facility-slide .facility-slide-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0;
    opacity: 1;
}
.facility-slide .facility-slide-pagination .swiper-pagination-bullet-active {
    background-color: #1192d1;
}

@media screen and (max-width: 1024px) {
    .facility-slide .facility-slide-pagination {
        bottom: 16px;
        gap: 8px;
    }
    .facility-slide .facility-slide-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}
@media screen and (max-width: 840px) {
    .facility-slide .facility-slide-pagination {
        bottom: unset;
        top: 16px;
    }
}

main {
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    main {
        padding-top: 48px;
    }
}

/* 에디터 css */
.ck-editor * {
    font-family: "Roboto", "Noto Sans", sans-serif !important;
}
.ck-content {
    min-height: unset;
}
.ck-content * {
    line-height: 1.5;
}
.ck-content :is(h1, h2, h3, h4, h5, h6, ul, ol, li, a, strong, span, i) {
    all: revert;
}

.ck-content img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.ck-content hr {
    background: #222;
    border: 0;
    height: 3px;
    margin: 2.5rem auto;
    width: 70%;
}
.ck-content blockquote {
    margin: 24px 0;
    position: relative;
    padding-left: 20px;
}
.ck-content blockquote::before {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    padding: 0;
    top: 0;
    left: 0;
    background: #222;
}
.ck-content .table {
    float: none !important;
    width: 100% !important;
    max-width: 800px;
}
.ck-content .table table {
    width: 100%;
}
.ck-content .iframe-container {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.ck-content .iframe-container > iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
