
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button,
input[type="submit"],
input[type="reset"] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}



body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

ol, ul {
    list-style: none;
}

ol, ul, li {
    margin: 0;
    padding: 0;
}


.hide {
    display: none;
}

.show {
    display: block;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 30px;
    font-weight: bold;
}

h3 {
    font-size: 26px;
    font-weight: 500;
}

h4 {
    font-size: 22px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
    margin: 0;
}

h6 {
    font-size: 13px;
    font-weight: 500;
}

p {
    font-size: 14px;
}

.bold {
    font-weight: 600;
}







/* Curtain */
.curtain {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    background-size: cover;
    background-position: center center;
    z-index: 9;
}


/*
 VIEW
 */
.view {
    position: absolute;
    z-index: 0;
    /* overflow-y: scroll; */
    width: 0;
    height: 0;

    top: 0;
    left: 0;
}

/* 
 VIEW BODY
 */
.view .view-body {
    z-index: 0;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    background-color: #FFF;
    top: 0;
    left: 100%;
    transform: translateX(0%);
    transition: .3s ease-in-out;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

.view > * {
    position: fixed;
    top: 0;
    left: 100%;
    transform: translateX(0%);
    transition: .3s ease-in-out;

}

.view > *::-webkit-scrollbar {
    display: none;
}

.view.active > * {
    /* display: block; */
    transform: translateX(-100%);
    transition: .3s ease-in-out;
    transition-delay: .3s;
}

.view.active.immediately > * {
    /* display: block; */
    transform: translateX(-100%);
    transition: 0s ease-in-out;
    transition-delay: 0s;
}

/* 
 SLIDER
 */
.first-view {
    height: 100%;
}

.first-view .swipe {
    overflow: hidden;
    visibility: hidden;
    position: relative;
}

.first-view .swipe .nav_dots {
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
    margin: 0;
}

.first-view .swipe .circle {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
}

.first-view .swipe .circle.strong {
    background-color: rgba(255, 255, 255, 1);
}

.first-view .swipe-wrap {
    overflow: hidden;
    position: relative;
}

.first-view .swipe-wrap > div {
    float: left;
    width: 100%;
    height: 100vw;
    position: relative;
}

.first-view .swipe-wrap img {
    width: 100%;
    height: 100%;
}

.first-select-box {
    position: relative;
    text-align: center;
    padding: 30px;
    line-height: 29px;
    width: 100%;
    height: calc(100% - 100vw);
}

.first-select-box > div {
    position: absolute;
    width: calc(100% - 60px);
}

.today-comment {
    top: 12%;
    font-weight: 350;
}

.select-bottons {
    top: 50%;
}

.select-bottons .main-button {
    margin-top: 0;
    margin-bottom: 15px;
}


.user .write_remind_btn_banner {
    position: relative;
}


/* 
 NAV
 */
.nav {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.nav.on {
    /* display: block; */
}

.nav .bg {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .6);
}

.nav hr {
    border: 2px solid #F9F6F4;
    margin: 0;
}

.nav .panel {
    position: fixed;
    top: 0;
    right: 100%;
    /* width: 280px; */
    width: 100%;
    height: 100%;
    /* padding: 30px 0px; */
    padding: 0px;
    background-color: #fff;
    transform: translateX(0);
    transition: .3s ease-in-out;
}

.nav.immediate .panel {
    /* transform: translateX(280px); */
    transform: translateX(100%);
    transition: .0s ease-in-out;
}

.nav.on .panel {
    /* transform: translateX(280px); */
    transform: translateX(100%);
    transition: .3s ease-in-out;
}

.nav .panel .user-box {
    padding: 30px 0 30px;
    text-align: center;
    border-bottom: 1px solid #E4E4E4;
}

.nav .panel .list-wrapper {
    width: 100%;
    height: calc(100% - 181px);
    overflow-y: auto;
}

.nav .panel img.user-thumb {
    width: 90px;
    height: 90px;
}

.nav .panel .user-name {
    overflow: hidden;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 500;
}

.nav .panel .user-id {
    overflow: hidden;
    font-size: 12px;
    /* color: #36abae; */
    color: #d86795;
}

.nav .panel li {
    padding: 20px 0 20px 40px;
    /* font-size: 14px; */
    font-weight: 350;
    transform: translateY(4px);
}

.nav .panel li div {
    flex: 1;
}

.nav .panel li img {
    /* width: 16px;
    height: 16px; */
    height: 18px;
}

.nav .panel .btn-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0px 25px 15px;
}

.nav .panel .btn-box img {
    height: 56px;
    margin: 0 30px;
}

.sidebar_menu {
    padding-left: 10px;
    font-size: 17px;
}

#sidebar a {
    font-size: 20px;
    display: block;
    margin: 20px 15px;
    padding: 0;
    height: 28px;
    line-height: 28px;
    text-decoration: none;
}

.title-list {
    /* padding: 20px 0 20px 40px; */
    padding: 20px 0 0 40px;
    font-weight: 700;
}

.hr-top {
    border-top: 1px solid #E4E4E4;
}

.sidebar-list {
    padding: 10px 0 10px 0px;
}

.sidebar-list li {
    position: relative;
}

.nav .font-strength li {
    font-size: 16px;
    font-weight: 600;
}

.nav .font-strength li:hover {
    background-color: #F7F7F7;
    color: #719E96;
}

.sidebar-txt {
    display: inline-block;
    font-size: 16px;
    position: absolute;
    top: 12px;
}

.selected {
    background-color: #F7F7F7;
    color: #DE4C84;
}


/*
 BANNER
 */
.banner {
    position: relative;
    padding: 25px 0 15px;
    margin: 0 20px;
}

.stress-banner {
    /* margin-top: 40px; */
    padding: 0 26px;
}

.last-stress {
    margin-top: 5px;
}

.banner > span {
    font-size: 16px;
}

.banner .box-text {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 20px 15px 0;
}

.custom-ticks {
    position: absolute;
    font-size: 13px;
    color: #575757;
    left: 0;
    top: 23px;
    padding: 0;
    padding-left: 10px;
}

.custom-ticks div {
    margin-top: 15px;
}

.custom-ticks .tick-vl {
    margin-top: 20px;
}

.index-stress {
    /* background-color: #FAF6F4; */
    /* border-radius: 5px;	 */
    /* padding: 0px 32px; */
    /* position:relative; */
    /* height: 127px; */
    border: none;
    text-align: center;
}

.stress-txt {
    text-align: center;
    color: #575757;
    font-size: 15px;
    font-weight: bold;
    margin-top: 12.65px;
}

.sub-title {
    font-size: 18px;
    /* font-size:4.5vw; */
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 16px;
    color: #000000;
}

.stress-banner .sub-title {
    margin-bottom: 15px;
    text-align: center;
}

.chart-banner .sub-title {
    margin-bottom: 0px;
}


.stress-box {
    /* position: relative; */
    width: 100%;
    padding: 32px 0px 0px;
    margin-bottom: -10px;
}

.stress-narrow-box {
    padding: 14px 30px 0;
    position: relative;
}

.stress-narrow-box button {
    position: absolute;
    top: 116px;
    right: 52px;
    width: 26px;
    height: 26px;
}

.stress-narrow-box .sub-title {
    text-align: center;
}

.last-stress-img {
    width: 100%;
}

.stress-narrow-box .stress-txt {
    margin: 20px 0 10px;
}

.gradient-line {
    width: 100%;
    height: 8px;
    border-radius: 7px;
    background: linear-gradient(to right, #29C5FF, #F56880);
    position: relative;
}

.index-circle {
    display: none;
    width: 21px;
    height: 21px;
    background-color: #9076BE;
    border: 3px solid #fff;
    border-radius: 19px;
    position: absolute;
    top: -6px;
    left: calc(0% - 10px);
    /* left: -10px; */
}

.lv.left,
.lv.right {
    display: inline-block;
    font-size: 11px;
}

.lv.left {
    position: absolute;
    top: -6px;
    left: 6px;
    color: #2985FF;
}

.lv.right {
    position: absolute;
    top: -6px;
    right: 6px;
    color: #F56880;
}

.result-txt {
    font-size: 13px;
}

.rec_li {

}

.rec-inline-box {
    padding: 0 40px;
    text-align: center;
    margin: 30px 0 40px;
}


/* 
 CHART
 */
.chart {
    height: 210px;
    position: relative;
    padding: 20px 0px 10px 55px;;
    margin-top: 20px;
}

.chart canvas {
    width: 100%;
}

.chart.index-chart {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -10px;
}


/* 
  Contents List
 */

.rec_contents {
    padding: 32px 25px 0px 25px;
}

.rec_contents ul.cp-list {
    margin-bottom: -10px;
}

.lock {
    position: absolute;
    width: 20px;
    height: 20px;
}

/* .rec_contents ul.cp-list li {
	overflow: hidden;
	height: 120px;
	margin: 10px 0;
	background-color:#F9F6F4;
	border-radius:10px;
}
.rec_contents ul.cp-list li > img{
	float: left;
	height:100%;
	padding:10px;
	margin-right: 12px;
	border-radius: 5px;
} */
.rec_contents ul.cp-list li .text {
    /* height: 100%; */
    /* width: 100%;
    padding-left: 135px;
    line-height: 14px;
    position: relative; */
    margin-top: 25px;

}

.rec_contents ul.cp-list li .rec-main-txt {
    font-weight: 700;
    font-size: 16px;
    margin: 8px 0;
    line-height: 22px;
    display: flex;
    color: #575757;
    font-weight: bold;
}

.rec_contents .rec-category {
    padding-right: 3px;
}

.rec_contents .rec-main-txt > div {
    display: flex;

}

.rec_contents ul.cp-list li p,
.rec_contents ul.cp-list li span {
    margin: 0;
    /* font-size: 4vw; */
    color: #666665;
    font-weight: 350;
    line-height: 20px;
    white-space: pre-wrap;
    font-size: 14px;
}

.rec_contents.sound-pick ul.cp-list li {
    display: flex;
    height: 110px;
}

.rec_contents.sound-pick ul.cp-list li .text-box {
    display: flex;
    padding: 0;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
    justify-content: space-between;
    padding-right: 10px;
    width: 100%;
}

.rec_contents.sound-pick ul.cp-list li .text-box > div {
    padding-right: 10px;
    width: 100%;
}

.rec_contents.sound-pick ul.cp-list li > img {
    width: 110px;
    height: 100%;
}

.sound-pick .text-box img {
    width: 20px;
    height: 20px;
}

.overflow {
    overflow: hidden;
    white-space: nowrap;
}

.flow-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 5px;
}


.cp-contents-box {
    padding: 0px 20px;
}

.cp-contents-box ul.cp-list {
    margin-bottom: -10px;
}

.cp-contents-box ul.cp-list li {
    overflow: hidden;
    margin: 10px 0 26px;
}

.cp-contents-box ul.cp-list li img {
    width: 100%;
    height: 200px;
}

.cp-contents-box ul.cp-list li img {
    width: 100%;
    height: 200px;
    margin-right: 12px;
}

.cp-contents-box ul.cp-list li .text {
    height: 100%;
    width: 100%;
    padding-left: 135px;
    margin-top: 5px;
    line-height: 14px;
}

.cp-contents-box ul.cp-list li .rec-main-txt {
    font-weight: 600;
    font-size: 16px;
    margin: 6px 0 4px;
}

.cp-contents-box ul.cp-list li p {
    margin: 0;
    font-size: 14px;
    color: #555555;
    font-weight: 350;
    line-height: 18px;
}


.meditation-2w .sub-title {
    margin-bottom: 0;
}

.move-2w-list img {
    width: 100%;
}

.move-2w-list div {
    margin-top: 15px;
}

.sound-now img {
    width: 100%;
    /* height: 185px; */
}

.sound-alot img {
    width: 100%;
    /* height: 185px; */
}

ul {
    margin: 0;
    padding: 0;
}

ul.scroll-x {
    overflow-x: scroll;
    white-space: nowrap;
    font-size: 0;
}

ul.scroll-x .new_title {
    /* overflow-x: scroll;
    white-space: nowrap; */
    font-size: 13px;
}

ul.scroll-x::-webkit-scrollbar {
    display: none;
}

ul.scroll-x li {
    display: inline-block;
}

ul.box-thumbs.scroll-x {
    margin: 0px -20px 0px -20px;
    padding: 0px 20px 0px 20px;
}

ul.box-thumbs.scroll-x li {
    position: relative;
    margin-right: 15px;
    vertical-align: top;
}

/* ul.box-thumbs.scroll-x li img { */
.how_img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
}

ul.box-thumbs.scroll-x li .heart {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 0;
}

ul.box-stage.scroll-x li img {
    /* 	width: 20px;
        height: 5px;
        border-radius: 3px; */
}

.pass {
    width: 20px;
    height: 5px;
    border-radius: 3px;
}

/* ul.box-stage.scroll-x li button {
	width: 185px;
	height: 80px;
	border-radius: 50px;
	border: 2px solid #EFE7E6;
} */


/* 
 FOOTER
 */

.index-footer {
    text-align: center;
    font-size: 14px;
    padding: 60px 0 70px;
}


/* 
  Contents Viewer
 */
.contents-viewer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #fff;
}


/*
  Common
 */


.nav_dots {
    margin: 20px;
}

.circle {
    margin: 15px 3px 0px 0px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 8px;
    background-color: #CCE4DD;
}

.strong {
    background-color: #719E96;
}

.strong.reverse {
    background-color: #F5F5F5;
}

.main-button {
    font-size: 18px;
    /* 	width: 315px; */
    width: 100%;
    height: 50px;
    background-color: #719E96;
    border-radius: 25px;
    margin: 25px 0;
    color: #ffffff;
}

.btn-outline {
    background-color: #ffffff;
    border: 2px solid #719E96;
    color: #719E96;
}

.md-button {
    height: 45px;
    padding: 0px 27px;
    font-size: 15px;
    color: #FFF;
    background-color: #393938;
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
    line-height: 14px;
}

.horizontal-bar {
    display: inline-block;
    width: 20px;
    margin: 5px 0;
    height: 3px;
    background-color: #707070;
}

.template {
    display: none;
}


/* SOUND REC */

.sound-title {
    left: 20px;
    bottom: 20px;
    font-size: 16px;
    margin-top: 9px;
    width: 140px;
    white-space: break-spaces;
    padding: 0px 10px;
    color: #393938;
    word-break: keep-all;
}

/* @@ splash test */
#outer-container {
    /* ... */
    overflow: hidden; /* // Hide everything outside of #outer-container */
}

#splash {
    align-items: center;
    background-color: #fff;
    border: 3px solid #000;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    vertical-align: middle;
    z-index: 9999;
}

#splash-content {
    font-style: italic;
    font-size: 30px;
}

button[disabled] {
    opacity: 0.5;
}


/* alertttt */
#popup_container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    background: #FFF;
    /* border: solid 5px #999; */
    color: #000;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 9999px, rgba(0, 0, 0, 0) 2px 2px 3px 3px;
    z-index: 100;
    /* height:150px; */
    border: 2px solid #E2D8D1;
}

#popup_title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    color: #666;
    background: #CCC url(images/title.gif) top repeat-x;
    /* border: solid 1px #FFF; */
    /* border-bottom: solid 1px #999; */
    cursor: default;
    padding: 0em;
    margin: 0em;
}

#popup_content {
    background: 16px 16px no-repeat url(images/info.gif);
    /* padding: 1em 1.75em; */
    margin: 0em;
    /* padding-top:31px; */
}

#popup_content.alert {
    background-image: url(images/info.gif);
}

#popup_content.confirm {
    background-image: url(images/important.gif);
}

#popup_content.prompt {
    background-image: url(images/help.gif);
}

#popup_message {
    /* padding: 20px 10px; */
    font-size: 18px;
    color: #393938;
    text-align: center;
    /* padding-top:31px; */

}

#popup_panel {
    text-align: center;
    /* margin: 1em 0em 0em 1em; */
    margin: auto;
    /* margin-bottom:10px; */
    margin-bottom: 20px;
}

/* #popup_panel > input {
	text-align: center;
	margin: 1em 0em 0em 1em;
	margin: 0px 0px 20px 0px;
	padding: 5px 10px 5px 10px;
 	background-color: #393938;
	border: 1px solid #EFE7E6;
	border-radius: 50px;
	color:white;
	width: 100%;
	padding: 16px 17px;
	min-width: 100px;
} */
#popup_panel #popup_ok {
    text-align: center;
    /* margin: 1em 0em 0em 1em; */
    margin: 0px 3px 5px 3px;
    padding: 5px 10px 5px 10px;
    background-color: #393938;
    border: 1px solid #EFE7E6;
    border-radius: 50px;
    color: white;
    /* width: 100%; */
    padding: 16px 17px;
    min-width: 100px;
}

#popup_panel #popup_cancel {
    text-align: center;
    /* margin: 1em 0em 0em 1em; */
    margin: 0px 3px 5px 3px;
    padding: 5px 10px 5px 10px;
    /* background-color: #393938; */
    background-color: white;
    border: 1px solid #EFE7E6;
    border-radius: 50px;
    /* color:white; */
    color: black;
    /* width: 100%; */
    padding: 16px 17px;
    min-width: 100px;
}

#popup_prompt {
    margin: .5em 0em;
}

/* For Blue Theme */
#popup_title_blue {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    color: #666;
    background: #CCC url(images/title-blue.png) top repeat-x;
    border: solid 1px #FFF;
    border-bottom: solid 1px #999;
    cursor: default;
    padding: 0em;
    margin: 0em;
}

#popup_content_blue {
    background: 16px 16px no-repeat url(images/info-blue.png);
    padding: 1em 1.75em;
    margin: 0em;
}

#popup_content_blue.alert {
    background-image: url(images/info-blue.png);
}

#popup_content_blue.confirm {
    background-image: url(images/important-blue.png);
}

#popup_content_blue.prompt {
    background-image: url(images/help-blue.png);
}

.tab {
    flex: 1;
    color: #575757;
    padding: 7px;
    margin: 2px;
    width: 85px;
    height: 33px;
    left: 145px;
    top: 171px;
    line-height: 17px;
    background-color: #F9F6F4;
    border: 1px solid #EFE7E6;
    border-radius: 12px;
}


/* .container {
	padding: 0px 16px;
} */
/* .ppg_container.brief-comment {
	padding: 35px 0 0;
	margin: 0 30px;
	line-height:1.6;
	font-size:16px;
	color:#575757;
} */

.str-stats_contents, .str-stats_stress {
    font-size: 18px;
    color: #393938;
    margin-top: 21px;
    text-align: center;
    font-weight: bold;
}

.ppg_container.detail-chart {
    margin: 7px 20px;
    position: relative;
}

#recent_stress {
    display: inline-block;
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 35px;
    /* font-size: 60px; */
    font-size: 80px;
    /* font-weight: bold; */
    color: #FF9450;
}

.chart canvas {
    width: 100%;
    height: 100%;
}

.go_ppg_button {
    width: 180px;
    height: 48px;
    margin: auto;
    line-height: 44px;
    text-align: center;
    background: #393938;
    border: 2px solid #EFE7E6;
    border-radius: 24px;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.str-no_ppg_data {
    font-weight: 550;
    font-size: 14px;
    line-height: 21px;
    margin-top: 10px;
    color: #393938;
}

.contents_title {
    margin-top: 4px;
    font-weight: bold;
    text-align: initial;
    font-size: 14px;
    color: #000000
}

.str-count_times {
    color: #acacab;
    font-weight: bold;
    margin-left: 2px;
    font-size: 15px;
}

.viewAllBtn {
    color: #575757;
    background-color: #F9F6F4;
    border: 1px solid #E2D8D1;
    border-radius: 20px;
    font-size: 12px;
    line-height: 18px;
    padding: 2px 10px;
}


.img_wrapper {
    position: relative;
}

.heart {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px !important;
    height: 20px !important;
}


.card_class {
    background-color: #F9F6F4;
    border-radius: 15px;
    margin: 0px 20px;
    color: #575757;
    padding: 0px 0px 20px 20px;
    display: flex;
    height: 120px;
    position: relative;
}

.bottom_class {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.card_img_class {
    position: absolute;
    right: 0;
    bottom: 0;
}

.card_love_class {
    /* 	width: 100%; */
    background-image: url(../img/meditation_breathing/mb_love_banner.png);
    height: 140px;
    background-repeat: no-repeat;
    /* background-size: contain; */
    /* background-size: calc(100% - 40px) 100%; */
    background-size: 100% 100%;
    position: relative;
}

.card_start_class {
    /* 	width: 100%; */
    background-image: url(../img/meditation_breathing/mb_love_banner.png);
    height: 130px;
    background-repeat: no-repeat;
    /* background-size: contain; */
    /* background-size: calc(100% - 40px) 100%; */
    background-size: 100% 100%;
    margin: 0px 20px;
    position: relative;
}

.card_text_class {
    font-weight: bold;
    font-size: 14px;
    color: #575757;
    bottom: 20px;
    left: 25px;
    line-height: 1.5em;
    position: absolute;
}

.btn_freeTrial {
    font-size: 10px;
    line-height: 19px;
    height: 18px;
    margin: 0;
    vertical-align: middle;
    font-family: Comfortaa;
}


/* /*----------------������----------------*/
/* galaxy fold */
@media (min-width: 250px) and (max-width: 350px) {
    .rec_contents ul.cp-list li {
        overflow: hidden;
        height: 100px;
        margin: 10px 0;
        background-color: #F9F6F4;
        border-radius: 10px;
    }

    .rec_contents ul.cp-list li .text {
        /* height: 100%; */
        margin-top: 15px;
    }

    /* .rec_contents ul.cp-list li > img { */
    .rec_img {
        float: left;
        height: 100%;
        padding: 10px;
        border-radius: 5px;
        border-radius: 20px;
    }

    .rec_lock {
        left: 65px;
        top: 16px;
    }

    /* ul.box-thumbs.scroll-x li img { */
    .how_img {
        width: 120px;
        height: 120px;
        border-radius: 10px;
    }

    .how_lock {
        top: 10px;
        right: 10px;
    }

    .sound-title {
        width: 120px;
    }

    .tab_menu {
        display: flex;
        text-align: center;
        font-size: 12px;
        margin: 20px 30px;
    }

    .rec_contents ul.cp-list li p, .rec_contents ul.cp-list li span {
        font-size: 3.4vw;
        line-height: 5.5vw;
    }

    #popup_container {
        min-width: 200px; /* Dialog will be no smaller than this */
        max-width: 320px; /* Dialog will wrap after this width */
        width: 250px !important;
    }
}

@media (min-width: 350px) and (max-width: 1700px) {
    .rec_contents ul.cp-list li {
        overflow: hidden;
        height: 120px;
        margin: 15px 0;
        background-color: #F9F6F4;
        border-radius: 10px;
    }

    .rec_contents ul.cp-list li .text {
        /* height: 100%; */
        margin-top: 25px;
    }

    /* .rec_contents ul.cp-list li > img{ */
    .rec_img {
        float: left;
        height: 100%;
        padding: 10px;
        margin-right: 6px;
        border-radius: 5px;
        border-radius: 20px;
    }

    .rec_lock {
        left: 81px;
        top: 20px;
    }

    .how_lock {
        top: 10px;
        right: 10px;
    }

    #cp_meditation_id {
        content: url('../img/index/move_breath@2x.png');
    }

    #cp_healingsound_id {
        content: url('../img/index/move_healingsound@2x.png');
    }

    #cp_diary_id {
        content: url('../img/index/move_diary@2x.png');
    }

    #cp_remind_id {
        content: url('../img/index/move_remind@2x.png');
    }

    #cp_asmr_id {
        content: url('../img/index/move_asmr@2x.png');
    }


    #location-jeju_id {
        content: url('../img/healingsound/theme/jeju_large@2x.png');
    }

    #location-okinawa_id {
        content: url('../img/healingsound/theme/okinawa_large@2x.png');
    }

    #location-hawaii_id {
        content: url('../img/healingsound/theme/hawaii_large@2x.png');
    }

    .page-index .section-location ul li .title {
        position: absolute;
        left: 16px;
        bottom: 10px;
        color: #fff;
        font-size: 18px;
        line-height: 27px;
    }

    .tab_menu {
        display: flex;
        text-align: center;
        font-size: 15px;
        margin: 27px 41px;
    }

    /* .rec_contents ul.cp-list li p, .rec_contents ul.cp-list li span {
        margin: 0;
        font-size: 4vw;
        font-size:14px;
        color: #666665;
        font-weight: 350;
        line-height: 5.5vw;
        line-height:20px;
        white-space: pre-wrap;
        padding-right:15px;
    } */
}

@media (max-width: 1440px) and (min-width: 600px) {
    #cp_meditation_id {
        content: url('../img/cp/contents_meditation.png');
    }

    #cp_healingsound_id {
        content: url('../img/cp/contents_healingsound.png');
    }

    #cp_diary_id {
        content: url('../img/cp/contents_diary.png');
    }

    #cp_remind_id {
        content: url('../img/cp/contents_rethink.png');
    }

    #cp_asmr_id {
        content: url('../img/cp/contents_asmr.png');
    }


    #location-jeju_id {
        content: url('../img/cp/cp_first_jeju.png');
    }

    #location-okinawa_id {
        content: url('../img/cp/cp_first_okinawa.png');
    }

    #location-hawaii_id {
        content: url('../img/cp/cp_first_hawaii.png');
    }

    .page-index .section-location ul li .title {
        visibility: hidden;
    }

    .tab_menu {
        display: flex;
        text-align: center;
        font-size: 12px;
        margin: 20px 50px;
    }

} 
