@import url('https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp');

.codex-editor__redactor { padding-bottom: 30px !important;}
footer {
    /*
    position: fixed;
    bottom: 0;
    left: 0;
    */
    width: 100%;
}
body {
}
.navbar {
}
.profile-sm {
    width:40px;
    border-radius: 70%;
}
a, a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}
.division-line {
  border-bottom: 1px solid silver;
  margin: 0px;
}
header {
}
.menubar {
    background-color: #2081E2 !important;
    display: flex;
    flex-basis: auto;
    margin-right:auto;
    color: #fff;
    padding-left: 0;
    margin-bottom: 0;
    align-items: center;
}
.menubar-container {
    align-items: center;
}
.menubar-logo {
    padding:0;
    margin-right: 0.5em;
}
.menubar-brand {
    color: #fff;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-right: 0rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    align-items: center;
}
.menubar-toggler {
    border:2px;
    border-color: #fff;
    border-radius: 1em;
    padding-left: 1rem;
    font-size:1.5em;
    width: 50px;
    clear:left;
}

.menubar-container,
.menubar-brand,
.menubar-toggler,
.menubar-nav, 
.menubar-nav-right {
    flex: 0 0 auto;
}

.menubar-nav-right {
    margin-right: 1em;
    margin-left:auto;
}

.menubar-items {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    list-style-type: none;
}
.menubar-item{
    flex: 1 1 auto;
    text-align: center;
    padding-left: 1em;
}
.menubar-link a:link {
    color: inherit;
}

.input-set {
    max-width: 220px;
    padding-right:1em;
}

.input-set input {
    margin-bottom: 0;
    border-radius: 5px;
    width: 100%;
    padding: 0.5em;
    margin: 0.5em;
    border: 1px;
    opacity: 0.7;
}

.input-set input[type=text]::placeholder {
    font-family: 'Material Icons Outlined';
    font-size: 1.5em;
    transform: translateY(5px);
}
.hand {
    cursor: pointer;
}
.maxtext{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flow-text {
    display: flex;
    flex: 0 0 auto;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
    width: 100%;
}
.flow-text:hover .flow-wrap {
    animation-play-state: paused;
    cursor: pointer;
}
.flow-text .track {
    animation: textLoop 60s linear infinite;
    padding-right: 1.4881vw;
}
@keyframes textLoop{
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.vertical-divider {
    border-right: 1px solid #ccc;
    height: 100%;
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}

/* 배경과 텍스트를 감쌀 컨테이너 */
.container-parent {
    position: relative;

    /* 컨테이너 자체는 투명한 배경 */
    background: transparent;
}

/* 배경 이미지가 적용될 div */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 배경 이미지 설정 */
    background-size: cover;
    background-position: center;

    /* 투명도 그라데이션 */
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

@keyframes moveBackground {
    0% {
        background-position: center;
    }

    25% {
        background-position: 45% 55%;
    }

    50% {
        background-position: 60% 40%;
    }

    75% {
        background-position: 50% 70%;
    }

    100% {
        background-position: center;
    }
}

/* 확대 축소 애니메이션 */
@keyframes zoomEffect {
    0% {
        background-size: 100%;
    }

    50% {
        background-size: 110%;
        /* 약간 확대 */
    }

    100% {
        background-size: 100%;
    }
}

.background.animated {
    animation: moveBackground 20s infinite alternate ease-in-out, zoomEffect 20s infinite alternate ease-in-out;
}

/* 글자 스타일 */
.t-shadow {
    /* 텍스트가 읽기 쉽도록 추가적인 그림자 */
    color:#fff;
    text-shadow: -1px 0px black, 0px 1px black, 1px 0px black, 0px -1px black;
}
