html {
    overflow-x: hidden;
    /*touch-action: pan-x pan-y;*/
    touch-action: none;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
    touch-action: pan-x pan-y;
}

div {
    margin: 0;
    padding: 0;
}

table {
    margin: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: collapse;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

td {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(0,0,0,0);
}

tr {
    margin: 0;
    padding: 0;
    vertical-align: top;
}

hr {
    width:100%;
    border: 0px;
    border-top: 1px dotted #666666;
    background-color: rgba(0,0,0,0);
    height:0px;
}

a {
    text-decoration: none;
    color:white;
}

input[type=text] {
    padding:5px;
    border:0px;
    width:120px;
    font-size:13px;
    border-radius: 3px;
    border: 1px solid #ccc;
    color:#333333;
}

input[type=password] {
    padding:5px;
    border:0px;
    width:120px;
    font-size:13px;
    border-radius: 3px;
    border: 1px solid #ccc;
    color:#333333;
}

input:focus {
    outline:none;
    border: 1px solid #ff005a;
}

.timeline_container {
    position:relative;
    width:100%;
    height:3px;
}

.timeline_bg {
    position:absolute;
    top: 9px;
    width: 100%;
    height:3px;
    background-color: rgba(207,240,231,0.2);
}

.timeline_buffer {
    position:absolute;
    top: 9px;
    width: 0%;
    height: 3px;
    background-color: rgba(207,240,231,0.5);
    transition: 0.2s;
}

.timeline_fg {
    position:absolute;
    top: 9px;
    width: 0%;
    height: 3px;
    background-color: #ff005a;
    transition: 0.2s;
}

.timeline_dimmer {
    position:absolute;
    top: 9px;
    width: 100%;
    height: 3px;
    background-color: rgba(207,240,231,0.5);
    /*box-shadow: 0px 0px 7px 1px rgba(255,255,255,0.6);*/
    box-shadow: 0px 0px 7px 1px rgba(255,0,90,0.6);
    visibility:hidden;
    animation-name: dimmer;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes dimmer {
    0% {opacity: 0.2; }
    50% {opacity: 1; }
    100% {opacity: 0.2; }
}

.container {
    vertical-align: center;
    height:100%;
    width:100%;
}

.btn_play {
    position: absolute;
    border-radius:50%;
    background:rgba(18,20,13,0.5);
    background-size:contain;
    border:1px solid transparent;
    transition:0.2s;
}

.poly_pause_1{
    position:absolute;
    background-color:white;
    width:100%;
    height:100%;
    clip-path: polygon(
        34.2% 28%,
        41.2% 28%,
        41.2% 72%,
        34.2% 72%,
        34.2% 28%
    );
}

.poly_pause_2{
    position:absolute;
    background-color:white;
    width:100%;
    height:100%;
    clip-path: polygon(
        58.8% 28%,
        65.8% 28%,
        65.8% 72%,
        58.8% 72%,
        58.8% 28%
    );
}

.poly_play_1{
    position:absolute;
    background-color:white;
    width:100%;
    height:100%;
    clip-path: polygon(
        36% 24%,
        72.7% 50%,
        72.7% 50%,
        36% 76%,
        36% 24%
    );
}

.poly_play_2{
    position:absolute;
    background-color:white;
    width:100%;
    height:100%;
    clip-path: polygon(
        62% 50%,
        62% 50%,
        62% 50%,
        62% 50%,
        62% 50%
    );
}

.info_text {
    position: absolute;
    border-radius:50%;
    background:rgba(18,20,13,0.5);
    background-size:contain;
    border:1px solid transparent;
    visibility:hidden;
}

.player_container {
    border: 0px;
    position:relative;
    margin:auto;
    width:100%;
    height:100%;
    background:black;
    transition:0.5s;
    overflow:hidden;
}

.player_video {
    border: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
}

.player_overlay {
    border: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0s;
}

.transition_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
}

.transition_frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size:contain;
}

.player_ui {
    top: 0;
    left: 0;
    position: absolute;
    width:100%;
    height:100%;
}

.fade_in {
    opacity:1;
    transition:0.5s;
}

.fade_out {
    opacity:0;
    transition:0.5s;
}

.hide {
    opacity:0;
    transition:0.2s;
}

.time_controller {
    position:absolute;
    bottom: 20px;
    left: 50px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff005a;
    transition:0.3s;
    transform: translate(-50%);
    transform-origin: center;
}

.length_controller {
    position:absolute;
    bottom: 20px;
    width: 8px;
    height: 8px;
    background: #ff005a;
    transition:0.3s;
    transform: translate(-50%) rotate(45deg);
    transform-origin: center;
}

.length_ctrl_indicator {
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    /*background: rgba(206,240,231,0.3);*/
    /*box-shadow: 0px 0px 10px 2px rgba(255,255,255,0.3);*/
    background: rgba(255,0,90,0.3);
    box-shadow: 0px 0px 10px 2px rgba(255,0,90,0.3);
    transition:0.5s;
    transform: translate(-50%) scale(1%);
    transform-origin: center;
    animation-name: indicator_dimmer;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes indicator_dimmer {
    /*0% {box-shadow: 0px 0px 6px 1px rgba(255,255,255,0.3);}*/
    /*50% {box-shadow: 0px 0px 12px 4px rgba(255,255,255,0.3);}*/
    /*100% {box-shadow: 0px 0px 6px 1px rgba(255,255,255,0.3);}*/
    0% {box-shadow: 0px 0px 6px 1px rgba(255,0,90,0.3);}
    50% {box-shadow: 0px 0px 12px 4px rgba(255,0,90,0.3);}
    100% {box-shadow: 0px 0px 6px 1px rgba(255,0,90,0.3);}
}


.cut_markers_area{
    position:absolute;
    left: 0px;
    bottom:9px;
    width:100%;
    height:16px;
}

.cut_marker{
    position:absolute;
    left: 0px;
    top: 5px;
    width: 1px;
    height: 3px;
    background-color: rgba(207,240,231,0.3);
    transition:0s;
}


.info_balloon {
    min-width: 60px;
    visibility: hidden;
    right:50px;
    bottom: 40px;
    position: absolute;
    height: 30px;
    line-height: 15px;
    vertical-align: middle;
    border-radius: 5px;
    background: rgba(206,240,231,0.3);
    color: black;
    padding: 5px;
    font-weight:400;
}

.info_balloon_arrow {
    visibility: hidden;
    bottom: 30px;
    right: 10px;
    border-top: 10px solid rgba(206,240,231,0.3);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    position: absolute;
}

.setting_window {
    position:absolute;
    top:55px;
    right: 20px;

    padding: 15px;

    width:200px;
    height:150px;

    border-radius: 10px;
    background-color: rgba(18,20,13,0.7);

    transition: 0.5s;
    visibility: hidden;
    opacity : 0;
}

.volume_window {
    position:absolute;
    top:55px;
    right: 30px;

    padding: 15px;

    width:20px;
    height:100px;

    border-radius: 10px;
    background-color: rgba(18,20,13,0.7);

    transition: 0.5s;
    visibility: hidden;
    opacity : 0;
}

.volume_gauge_container {
    margin:auto;
    position:relative;
    width:4px;
    height:100%;
}

.volume_gauge_back {
    position:absolute;
    width: 4px;
    height: 100%;
    background-color: rgba(207,240,231,0.3);
    transition: 0.2s;
}

.volume_gauge_front {
    position:absolute;
    top: 0%;
    width: 4px;
    height: 100%;
    background-color: #ff005a;
    transition: 0.1s;
}

.volume_controller {
    position:absolute;
    right: -5px;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    background: #ff005a;
    transition:0.1s;
}

.bold {
    height:25px;
    text-align:left;
    font-size:14px;
    font-weight:bold;
    vertical-align:top;
    color:#dd0033;
}

.common {
    height:25px;
    text-align:left;
    font-size:13px;
    vertical-align:middle;
}

.option_btn {
    text-align:center;
    vertical-align:middle;
    width:80%;
    height:18px;
    line-height: 18px;
    padding: 5px;
    margin: 5px 0px 5px 0px;
    border: 1px solid rgba(0,0,0,0);
}

.option_btn:hover {
    /*border: 1px solid #ff005a;*/
    /*background-color:rgba(238,51,61,0.3);*/
}

.option_btn_press {
    background-color:#ff005a;
}

.option_btn_disabled {
    color:#666;
}

.hide_elem {
    opacity:0;
    display:none;
    transition:0.5s;
}

.content_title {
    height:17px;
    line-height: 17px;
    text-align: left;
    font-size: 15px;
    color: #333;
}

.content_title_in_list {
    color: #333;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    padding:0;
    margin:0;
}

.text_limit {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;

}

.content_info {
    vertical-align: top;
    text-align:left;
    font-size:11px;
    color:#999;
    line-height: 13px;
    padding:0;
    margin:0;
}

.title_logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.vertical_gap {
    height:10px;
}

.vertical_gap_big {
    height:15px;
}

.vertical_gap_huge {
    height:25px;
}

.vertical_gap_small {
    height:5px;
}

.content_object_list{
    /*display: none;*/
}

.content_object {
    position:absolute;
    top: -1000px;
    left: 0px;
    width: 250px;
    height: 185px;
    /*background-color: rgba(48,51,50,0.5);*/
    background-size:contain;
    background-repeat: no-repeat;
    vertical-align:bottom;
    transition: 0.5s;
    opacity: 1;
}

.banner {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    margin:auto;
    padding:5px;
    background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,0.9), rgba(255,255,255,0.8), rgba(255,255,255,0));
    /*backdrop-filter: blur(4px);*/
    transition:0.2s;
}

.video_length {
    padding:2px 5px;
    height:15px;
    line-height:15px;
    font-size: 12px;
    border-radius: 5px;
    background-color: rgba(24,28,22,0.8);
    text-align:center;
    margin:5px;
    display:inline-block;
}

.sevenmin_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-size:contain;
    background-image:url('/static/images/7min_logo_transition.png');
    visibility:hidden;
    opacity:0;
}

.text_info {
    font-size:11px;
}

.timeline_touch_area {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:30px;
    transition:0.5s;
}

.loader1 {
    position:relative;
    top:25%;
    width: 50%;
    height: 50%;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader2{
  position: relative;
  border-radius: 50%;
  border: 3px solid  rgba(255,255,255, .7);
  top: 20%;
  left: 20%;
  transform-origin: 50% 50%;
  animation: loader1 1s linear infinite;
}

.loader2:after{
  content: "";
  position: absolute;
  top: -5px;
  left: 20px;
  width: 11px;
  height: 11px;
  border-radius: 10px;
  background-color: #fff;
}

@keyframes loader1{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

.submit_btn {
    background-color:#ff005a;
    color: white;
    /*font-size:13px;*/
    display: inline;
    padding: 6px 12px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 3px;

    border:1.5px solid #ff005a;
}

.submit_btn:hover {
    background-color:white;
    color: #ff005a;
    /*font-size:13px;*/
    display: inline;
    padding: 6px 12px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 3px;

    border:1.5px solid #ff005a;
}

.category {
    display: inline;
    padding: 6px 12px;
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 3px;

    color:#ff005a;
    border:1px solid #ff005a;
}

.category_list {
    width:100%;
    margin:auto;
    padding-top: 10px;
    overflow: auto;
    white-space: nowrap;
    height:30px;
}
.category_list::-webkit-scrollbar {
    display: none;
}

.category_chosen {
    color: white;
    background-color: #ff005a;
    font-weight:bold;
}

.open_overlay {
    width:100%;
    position:absolute;
    left:0;
    top:0;
    background-color:black;
    background-size:cover;
    background-position:50% 50%;
    opacity:1;
    transition:0.5s;
}

.content_object_thumbnail {
    background-position:50% 50%;
    background-size: cover;
    border-radius: 5px;
    background-repeat:no-repeat;
}

.record_btn {
    width: 0;
    height: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff005a;
    background-image:url('/static/images/mic.png');
    background-size:contain;
    border-radius: 50%;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    transition: 0.2s;
    transform-origin: 50% 50%;
    -webkit-touch-callout: none; /* iOS Safari에서 길게 눌렀을 때 팝업 메뉴 방지 */
    -webkit-user-select: none;   /* iOS Safari에서 텍스트 선택 방지 */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
    user-select: none;           /* 표준 */
}

.record_btn_big {
    animation: scaling 1s ease-in-out infinite;
}

@keyframes scaling {
  0% {
    transform: scale(1.5);
  }
  50% {
    transform: scale(1.7);
  }
  100% {
    transform: scale(1.5);
  }
}

.record_btn_ready {
    background-color: #aaaaaa;
    animation: scaling2 0.5s ease-out forwards;
}
@keyframes scaling2 {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(2);
  }
  75% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.5);
  }
}



.MSG_window {
    position: absolute;
    padding: 7px;
    font-size:13px;
    background-color:rgba(0,0,0,0.6);
    border-radius: 3px;
    display:none;
    transition:0.5s;
}