@charset "UTF-8";

html {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

/**
 * Body
 */
body {
    font-size: 1rem;
    font-family: "Noto Sans KR", sans-serif !important;
    line-height: 24px !important;
    color: #747474 !important;
    background-color: #f8f8f8 !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Noto Sans KR", sans-serif !important;
}

a {
	color: #747474;
}

@media(max-width:320px){
	.col-xxs-1 {
		flex: 0 0 auto;
    	width: 8.33%;
	}
	.col-xxs-2 {
		flex: 0 0 auto;
    	width: 16.66%;
	}
	.col-xxs-3 {
		flex: 0 0 auto;
    	width: 25%;
	}
	.col-xxs-4 {
		flex: 0 0 auto;
    	width: 33.33%;
	}
	.col-xxs-5 {
		flex: 0 0 auto;
    	width: 41.66%;
	}
	.col-xxs-6 {
		flex: 0 0 auto;
    	width: 50%;
	}
	.col-xxs-7 {
		flex: 0 0 auto;
    	width: 58.33%;
	}
	.col-xxs-8 {
		flex: 0 0 auto;
    	width: 66.66%;
	}
	.col-xxs-9 {
		flex: 0 0 auto;
    	width: 75%;
	}
	.col-xxs-10 {
		flex: 0 0 auto;
    	width: 83.33%;
	}
	.col-xxs-11 {
		flex: 0 0 auto;
    	width: 91.66%;
	}
	.col-xxs-12 {
		flex: 0 0 auto;
    	width: 100%;
	}
}

@media(min-width:321px) and (max-width:360px){
	.col-xs-1 {
		flex: 0 0 auto;
    	width: 8.33%;
	}
	.col-xs-2 {
		flex: 0 0 auto;
    	width: 16.66%;
	}
	.col-xs-3 {
		flex: 0 0 auto;
    	width: 25%;
	}
	.col-xs-4 {
		flex: 0 0 auto;
    	width: 33.33%;
	}
	.col-xs-5 {
		flex: 0 0 auto;
    	width: 41.66%;
	}
	.col-xs-6 {
		flex: 0 0 auto;
    	width: 50%;
	}
	.col-xs-7 {
		flex: 0 0 auto;
    	width: 58.33%;
	}
	.col-xs-8 {
		flex: 0 0 auto;
    	width: 66.66%;
	}
	.col-xs-9 {
		flex: 0 0 auto;
    	width: 75%;
	}
	.col-xs-10 {
		flex: 0 0 auto;
    	width: 83.33%;
	}
	.col-xs-11 {
		flex: 0 0 auto;
    	width: 91.66%;
	}
	.col-xs-12 {
		flex: 0 0 auto;
    	width: 100%;
	}
}

input:focus, input:active, button:focus, button:active, a:focus, a:active {
  outline: none !important;
  box-shadow: none !important;
}

/**
 * a
 */
a {
	text-decoration: none !important;
}

/**
 * Page
 */
.page {
    min-height: 60vh;
    z-index: 1;
    position: relative;
    min-width: 280px;
    max-width: 1024px;
    margin: auto;
}

/**
 * Header
 */
.header {
	background-color: #ffffff;
	position: fixed;
    z-index: 98;
    left: 0px;
    right: 0px;
    top: 0px;
    min-height: 70px;
    padding: 0px 0px;
    /* box-shadow: 0 8px 24px 0 rgb(0 0 0 / 8%); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: calc((constant(safe-area-inset-top))) !important;
    padding-top: calc((env(safe-area-inset-top))) !important;
    display: flex;
    aling-items: stretch;
    min-width: 280px;
    max-width: 1024px;
    margin: auto;
}

.header * {
    align-self: center;
    line-height: 42px;
    color: #0f1117 !important;
}

.header a {
	position: relative;
	text-align: center;
    font-size: 30px;
    min-width: 60px;
}

.header .header-title {
	margin-top: 1px;
	margin-left: 5px;
    flex-grow: 8;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

/**
 * Loading
 */
.loading {
	position: absolute;
    left: 0;
    top: 0;
    background: #000000aa;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    text-align: center;
}

.loading img {
	height: 50px;
	width: 50px;
	position: relative;
	margin-top: 45vh;
    animation-name: loading;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes loading {
  0%    {top:0px;}
  10%   {top:10px;}
  20%   {top:0px;}
  30%   {top:10px;}
  40%   {top:0px;}
  50%   {top:10px;}
  60%   {top:0px;}
  70%   {top:10px;}
  80%   {top:0px;}
  90%   {top:10px;}
  100%  {top:0px;}
}

/**
 * content
 */
.content {
	position: relative;
}

/**
 * Main
 */
.main-menu {
	display:none;
	position: relative;
	width: 100%;
	height: 100vh;
}

.main-menu.show {
	display:inline-block;
}

.main-menu .logo {
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 96px;
}

.main-menu .logo img {
	display: block;
	width: 60%;
	margin: 0 auto;
}

.main-menu .logo p {
	font-size: 1rem;
	text-align: center;
	margin-top: 32px;
}

.main-menu .logo span {
	font-weight:700;
}

.main-login {
	display:none !important;
}

.main-login.show {
	display:block !important;
}

.main-menu .menu {
	position: absolute;
	bottom: 14%;
	list-style: none;
	font-size:1.2rem; 
	font-weight:600;
}

.main-menu ul li:not(:last-child)::after {
    display: block;
    position: relative;
    width: 12px;
    height: 1px;
    content: '';
    background: #fa9667;
    margin: 14px auto;
}

.main-login ul li:nth-child(2)::before, .main-login ul li:nth-child(3)::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #8b8b8b;
}

.main-login .login .input-login {
	height: 44px; width: 100%;
	line-height: 44px;
	font-size: 1rem;
	border: none !important;
	background: none !important;
	border-bottom: 2px solid !important;
	border-bottom-color: #4b4948 !important;
	-moz-border-radius: 0px !important;
	-khtml-border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
}

.footer.main-login {
	backdrop-filter:none;
	background:#ffffff;
	box-shadow:none;
}

.footer.main-login ul {
	display: inline-block;
	position: relative; 
	list-style: none;
}

.footer.main-login ul li {
	display: inline-block;
	position: relative;
	float: left;
	list-style: none;
}

.footer.main-login ul li a {
	color: #8b8b8b; 
	padding: 0 11px; 
	font-size: 0.8rem;
	font-weight: 400 !important;
}

/**
 * Join
 */ 
.join .join-title {
	font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: #333333;
    padding: 0.5rem 2rem;
}

.join .input-join {
	height: 44px; width: 100%;
	line-height: 44px;
	font-size: 1rem;
	border: none !important;
	background: none !important;
	border-bottom: 2px solid !important;
	border-bottom-color: #4b4948 !important;
	-moz-border-radius: 0px !important;
	-khtml-border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
}

.join .join-term {
	display: block;
    width: 80%;
    background-color: #ffffff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 20px;
    border: 1px solid #ec6c00;
    color: #ec6c00;
    padding: 0.1rem;
}

.join .join-term.selected {
	background-color: #ec6c00 !important;
	color: #fefefe !important;
}

.footer.join-next {
	backdrop-filter: none;
    background: #ffffff;
    box-shadow: none;
    height: 49px;
    padding-bottom: 8px;
}

.join .join-step {
	display:none;
}

.join .join-step.show {
	display:block;
}

.join .join-label {
	font-weight: 600;
    margin-top: 0.5rem;
}

/**
 * Menu
 */
#side-menu.offcanvas {
    min-height: auto !important;
    height: auto;
    display: block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 0px;
    left: 0;
    top: 0; 
    bottom: 0;
    width: 100%;
}

#side-menu.offcanvas.show {
    pointer-events: all !important;
}

#side-menu .closeBtn {
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    padding: 1rem;
    line-height: 42px;
    color: #0f1117 !important;
}

#side-menu .menu {
	overflow-y: auto;
    height: calc(100vh - 70px);
    padding-bottom: 2rem;
}

#side-menu .menu-list {
    width: 100%;
    height: auto;
    padding: 22px 0 0 0;
    text-align: center;
}

#side-menu .menu-list::after {
    content: '';
    display: block;
    position: relative;
    width: 12px;
    height: 1px;
    background: #f89464;
    margin: 20px auto 0 auto;
    clear: both;
}

#side-menu .menu-list a {
    width: 100%;
    height: 100%;
    position: relative;
}

#side-menu .menu-list a p {
	font-size: 20px;
    color: #444444;
    line-height: 25px;
}

#side-menu .menu-list a span {
	font-size: 14px;
    color: #898c8d;
}

/**
 * Footer
 */
.footer {
	background-color: #ffffff;
	padding: 0px 10px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 98;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 -5px 5px 0 rgb(0 0 0 / 4%);
    height: 80px;
    height: calc(80px + (env(safe-area-inset-bottom))*1.1);
    display: flex;
    text-align: center;
}

.footer a {
	padding-top: 15px;
    position: relative;
    flex: 1 1 auto;
}

.footer a i {
	display: block;
}

/**
 * Content
 */
.page-content {
	position: relative;
    overflow-x: hidden;
    transition: all 250ms ease;
    z-index: 2;
}

.header-clear {
	padding-top: 70px;
    padding-top: calc(70px + (constant(safe-area-inset-top))*0.8) !important;
    padding-top: calc(70px + (env(safe-area-inset-top))*0.8) !important;
}

.footer-clear {
	padding-bottom: 80px;
    padding-bottom: calc(80px + (constant(safe-area-inset-bottom))*1.1);
    padding-bottom: calc(80px + (env(safe-area-inset-bottom))*1.1);
}

/**
 * Card
 */
.rt-card {
    background: #FFFFFF;
    box-shadow: rgb(0 0 0 / 3%) 0 20px 25px -5px, rgb(0 0 0 / 2%) 0 10px 10px;
    border-radius: 0;
    border: 0;
    z-index: 2;
}

/**
 * Main
 */
.no-dev img {
	width: 100%;
} 

.no-dev h5 {
	margin: 5rem 0 5rem 0;
}

.no-dev button {
	background-color: #ec6c00 !important;
    color: #ffffff !important;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 47px;
    font-weight: 600 !important;
    margin: 0 !important;
    border: 0;
    border-radius: 20px;
}

.title {
	font-size: 20px;
	font-weight: 600;
	color: #1b1b1b;
}
 
.dev-list {
	
}

.dev-list .dev {
	padding: 1rem;
	margin-bottom: 1rem;
}

.dev-list .dev img {
	width: 72px;
	height: 72px;
}

.dev-list .dev .dev-name {
	margin-bottom: 5px;
    font-size: 15px;
    padding: 0 20px;
    min-width: 40vw;
}

.dev-list .dev[data-conn='false'] .dev-name, .dev-list .dev[data-conn='false'] .dev-status {
	color: #cccccc;
}

.dev-list .dev .dev-status {
	margin-bottom: 0;
    font-size: 25px;
    font-weight: 500;
    padding: 0 20px;
    min-width: 40vw;
}

.dev-list .dev .dev-bar {
	width: 100%;
}

.dev-list .dev .dev-bar p {
	text-align:right;
	margin:10px 0;
}

.dev-list .progress {
    height: 5px;
}

.recipe-search {
	margin-bottom: 10px;
}

.recipe-search .content > div {
	height: 7rem;
}

.recipe-search .sub {
	margin: 0;
	font-size: 14px;
}

.recipe-search .main {
	margin: 0;
    font-weight: 700;
    color: #333333;
    font-size: 16px;
}

.recipe-search .hash {
	margin: 0;
	color: #3c6fff;
	font-size: 12px;
}

.recipe-search .date {
	margin: 0 3px 0 0;
	font-size: 12px;
}

.recipe-search .user {
	margin: 0;
    color: #ec6c00;
    margin-right: 10px;
}

.recipe-search .like {
	margin: 0;
}

.recipe-search .like.selected i {
	color: #ec6c00;
}

.recipe-search .favorite-search {
	margin-right: 10px;
}

.recipe-search .favorite-search.selected {
	color: #ec6c00;
}

/**
 * Cooker
 */
.cooker-head .menu-name {
	font-size: 28px;
	font-weight: 700;
	color: #1b1b1b;
	min-width: 40vw;
	margin-bottom: 30px;
	line-height: 2rem;
}

.cooker-head .menu-time-label {
	margin-right: 10px;
}

.cooker-head .menu-time {
	font-size: 25px;
	color: #ec6c00;
	font-weight: 500;
}

.cooker-head a {
    display: block;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    height: 40px;
    font-size: 16px;
    line-height: 34px;
    font-weight: 400;
    border-radius: 20px;
    border: 1px solid #ec6c00;
    color: #ec6c00;
}

.cooker-head a.disabled {
    background-color: #cbcbcb;
    border: 1px solid #cbcbcb;
    color: #ffffff;
}

.fav-menu {
	
}

.fav-menu i {
	float: right;
    padding: 10px;
    line-height: 5px;
}

.fav-menu span {
	display: block;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ec6c00;
    color: #ec6c00;
    height: 100%;
    box-shadow: rgb(0 0 0 / 3%) 0 20px 25px -5px, rgb(0 0 0 / 2%) 0 10px 10px;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fav-menu span.selected {
	background-color: #ec6c00;
    color: #ffffff;
	font-weight: 500;
}

.fav-menu-set {
	width: 100%;
	text-align: center;
}

.fav-menu-set a {
	display: block;
    width: 100%;
    background-color: #ffffff;
    height: 45px;
    box-shadow: rgb(0 0 0 / 3%) 0 20px 25px -5px, rgb(0 0 0 / 2%) 0 10px 10px;
    font-size: 15px;
    line-height: 40px;
    font-weight: 300;
}

.fav-menu-set a.selected {
	background-color: #cccccc;
	color: #ffffff;
	font-weight: 400;
}

.cook-menu button {
	width: 100%;
    border: 1px solid #cccccc;
    height: 80px;
}

.li-menu {
	padding: 1rem;
    background-color: #ffffff;
    box-shadow: rgb(0 0 0 / 3%) 0 20px 25px -5px, rgb(0 0 0 / 2%) 0 10px 10px;
    font-size: 20px;
    font-weight: 500;
    color: #1b1b1b;
    margin-bottom: 1px;
    border-bottom: 1px solid #f8f8f8;
}

.li-menu i {
	float: right;
}

.btn-menu {
	width: 100%;
}

.btn-menu button {
	border: 1px solid #747474;
	color: #747474;
	height: 50px;
}

.btn-menu button:first-child {
	border-right: none;
}

.btn-menu button:last-child {
	border-left: none;
}

.btn-menu button.selected {
	background-color: #ec6c00;
    border: 1px solid #ec6c00;
    color: #ffffff;
}

.btn-menu button:focus {
    box-shadow: none !important;
}

.cooker-bt h6 {
	border: 1px solid #bbbbbb;
    height: 25px;
    line-height: 20px;
    border-radius: 20px;
}

.cooker-bt .icon-bt {
	float: right;
    padding: 15px;
    line-height: 0px;
}

.btn-func {
	text-align: center;
	height: 100%;
}

.btn-func .func {
    height: 70px;
    border-radius: 15px;
    background: #f4f4f4;
    width: 90%;
    margin: auto;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-func .func:active {
    background: #ec6c00;
    color: #ffffff;
}

.btn-func i {
	display: block;
    font-size: 25px;
    font-weight: 600;
}

.btn-func span {
    font-size: 1rem;
   
}

.cooker-bt {
	
}

.cooker-bt .text-bt {
	font-size: 16px;
}

.cooker-bt.disabled .text-bt {
	color : #cbcbcb;
}

.cooker-bt .btn-bt {
    padding: 15px;
    line-height: 5px;
}

.cooker-bt .label-bt {
	background: #ec6c00;
    padding: 5px;
    border-radius: 20px;
}

.cooker-bt.disabled .label-bt {
	background: #cbcbcb;
}

.cooker-bt .label-bt.disabled {
	background: #cbcbcb !important;
}

.cooker-bt label {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	padding: 0 20px;	
}

.cooker-bt.disabled label {
	color: #ffffff;
}

.cooker-bt.disabled i.btn-bt {
	color: #cbcbcb;
}

#modal-bt .label-bt {
	background: #ec6c00;
    color: #ffffff;
    border-radius: 20px;
    padding: 5px;
    height: 24px;
    font-size: 12px;
    line-height: 12px;
}

.menu-menu .li-menu{
	border-bottom: 2px solid #ebebeb;
	box-shadow: none !important;
}

.menu-menu .li-menu:last-child{
	border-bottom: 0;
	box-shadow: none !important;
}

#modal-cook .btn-mc {
	background: #e0e0e0;
    color: #ffffff;
    padding: 5px;
    width: 80%;
    text-align: center;
    display: block;
    font-size: 0.9rem;
    border-radius: 20px;
}

#modal-cook .btn-mc.selected {
	background: #ec6c00;
}

#modal-resv .pam-resv {
	border-radius: 30px;
    text-align: center;
    color: #747474;
}

#modal-resv .time-resv {
	width: 100%;
    border: 0;
    border-bottom: 1px solid #aaaaaa;
    border-radius: 0;
    text-align: center;
}

#modal-resv .save-resv .save-time-resv {
	border: 1px solid #bbbb;
	padding: 5px;
	background: #ffffff;
	border-radius: 15px;
	color: #747474;
}

#modal-resv .save-resv .save-time-resv.selected {
	border: 1px solid #ec6c00;
	background: #ec6c00;
	color: #ffffff;
}

#modal-resv .btn-mc {
	background: #e0e0e0;
    color: #ffffff;
    padding: 5px;
    width: 80%;
    text-align: center;
    display: block;
    border-radius: 20px;
    height:100%;
}

#modal-resv .btn-mc.selected {
	background: #ec6c00;
}

@media(max-width:380px){
	 #modal-resv .pam-resv
	,#modal-resv .time-resv
	,#modal-resv .save-time-resv{
		font-size: 0.8rem;
	}
	#modal-resv .row [class*="col-"] {
	    padding-right: 0.25rem;
	    padding-left: 0.25rem;
	}
}

#modal-fav #list-fav i {
	font-size: 14px;
}

#modal-fav #list-fav div {
	font-size: 16px;
}

.tabs {
	background-color: #ffffff;
}

.tabs ul.nav-tabs {
	padding: 1rem;
	overflow-x: auto;
}

.tabs ul.nav-tabs button {
	font-size: 16px;
	color: #aaaaaa;
	padding: 0 10px;
	border: 0 !important;
}

.tabs ul.nav-tabs button.active {
	color: #ec6c00;
	border: 0 !important;
}

.hour-warm {
	display: none;
	position: absolute;
    left: 0px;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

/** 
 * More
 */
.packing-btn {
	padding: 1rem;
}

.packing-btn a {
	border: 1px solid #ec6c00;
    border-radius: 20px;
    color: #ec6c00;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

/**
 * Search
 */
.keyword-search img {
	width: 30px;
    height: 30px;
    padding: 5px;
    margin-top: 5px;
}

.keyword-search input {
	border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ced4da;
}

.title-search label {
	font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin: 0 2px 0 2px;
}

.title-search label:first-child, .title-search label:last-child {
	font-size: 16px;
    font-weight: 400;
}

.option-list-search .option-search {
	background: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    margin: 5px 5px;
    display: inline-block;
}

.option-list-search .option-search.select {
	background: #ec6c00 !important;
    color: #fefefe !important;
}

.option-list-search .option-search i {
	font-size: 5px;
    padding: 5px;
}

.material-search .btn-mt-search {
	border: 1px solid #ec6c00;
    border-radius: 5px;
    color: #ec6c00;
    margin-bottom: 1rem;
    height: 36px;
    line-height: 30px;
}

.material-search .btn-mt-search.selected {
    color: #ffffff;
    background: #ec6c00;
}

/**
 * Scan
 */
.scan-div {
	width: 100%;
	height: calc(100vh - 70px);
    background: #000000;
}

.scan-reader {
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scan-reader > div > div:last-child{
	display:none;
}

/**
 * Erange
 */
 
/* 
.erange .erange-left {
	border-left: dashed;
	border-right: dashed;
}

.erange .erange-left.flux {
	border-left: solid #d31111 !important;
	border-right: solid #d31111 !important;
}
*/

#stopwatchTime {
	position: absolute;
    margin: 10px 4rem;
    font-size: 20px;
}

#img-fire {
	background-image: url(/assets/cuchenon/img/img_erange_0000.svg);
	background-repeat: no-repeat;
}

.erange .erange-left .erange-level.under-level {
	background: #FDEFE7;
	position: absolute;
    margin-top: 3rem;
    padding: 5px;
}

.erange .erange-right {
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.erange .erange-fire {
	display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
}

.erange .erange-fire .erange-level {
	position: absolute;
	font-size: 1.2rem;
}

.erange .erange-fire img {
	width: 100%;
}
	
		
.offcanvas label.option-text {
	padding: 0.5rem;
    color: #1b1b1b;
    font-size: 1rem;
}

.erange .heat-color {
    animation-name: heat-color;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes heat-color {
  0%    {color:#ec6c00;}
  50%   {color:#d31111;}
  100%  {color:#ec6c00;}
}

/**
 * Shopping Memo
 */
.memo-list .memo {
	padding: 1rem;
	margin-bottom: 1rem;
}

.memo-list .memo-dt {
	margin-bottom: 5px;
    font-size: 15px;
    padding: 0 20px;
    min-width: 40vw;
}

.memo-list .memo-title {
	margin-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
    padding: 0 20px;
    min-width: 40vw;
}

.memo-nm {
	display:none;
}

.memo-nm.show {
	display:block;
}

.memo-check {
	width: 20px;
	height: 20px;
}

.memo-detail-list .checked .memo-content {
	text-decoration-line: line-through;
}

.memo-detail-list .memo-detail .memo {
	display: block;
}

.memo-detail-list .memo-detail .memo-edit {
	display: none;
}

.memo-detail-list .memo-detail.edit .memo {
	display: none;
}

.memo-detail-list .memo-detail.edit .memo-edit {
	display: block;
}

/**
 * Family
 */

.family-list .family {
	padding: 1rem;
	margin-bottom: 1rem;
}

.family-list .family img {
	width: 72px;
	height: 72px;
}

.family-list .family .family-mail {
	margin-bottom: 5px;
    font-size: 15px;
    padding: 0 20px;
    min-width: 40vw;
}

.family-list .family .family-name {
	margin-bottom: 0;
    font-size: 25px;
    font-weight: 500;
    padding: 0 20px;
    min-width: 40vw;
}

/*
 * Profile
 */
.footer .footer-btn{
	height: 100%;
    font-size: 20px;
    line-height: 45px;
    padding-top: 15px;
    position: relative;
    flex: 1 1 auto;
    border-radius: 0;
}

.profile .userInfo {
	position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 2rem;
    background: url(/assets/cuchenon/img/mypage_bg.png) no-repeat center;
    background-size: 100% 100%;
}

.profile .userInfo .user {
    padding: 2rem 0 0 0;
    display: block;
    position: relative;
    text-align: center;
}

.profile .userInfo .user .userImg {
	position: relative;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.profile .userInfo .user .userImg a {
	width: 82px;
    height: 82px;
    overflow: hidden;
    position: relative;
}

.profile .userInfo .user .userImg a img {
	position: relative;
    width: 100%;
    height: auto;
}

.profile .userInfo .user .imgSelect {
	width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 50%;
    margin-right: -59px;
    background: url(/assets/cuchenon/img/icon/ico_photo.png) no-repeat center center;
    background-size: 35px 35px;
}

.profile .userInfo .user .userName {
	display: block;
    font-size: 20px;
    color: #fff;
}

.profile-camera {
	top:auto !important; 
	bottom:-63px !important;
}

.profile-camera .btn-profile-cam {
	display: block;
    width: 100%;
    font-size: 15px;
    color: #444;
    line-height: 45px;
    height: 47px;
    border: 1px solid #ec6c00;
    text-align: center;
}

.profile .input-profile-border {
	height: 44px; width: 100%;
	line-height: 44px;
	font-size: 14px;
	border: none !important;
	background: none !important;
	border-bottom: 2px solid !important;
	border-bottom-color: #4b4948 !important;
	-moz-border-radius: 0px !important;
	-khtml-border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
}

.profile .input-profile {
    height: 44px;
    width: 100%;
    line-height: 44px;
    font-size: 14px;
    border: none !important;
    background: none !important;
    -moz-border-radius: 0px !important;
    -khtml-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
}

.profile .label-profile {
	font-weight: 600;
    margin-top: 0.5rem;
}

/**
 * Recipe Main
 */
 
.gallery-top .swiper-wrapper .swiper-slide > div.swiper-img {
	width:100%;
	overflow: hidden;
	position:relative;
}
.gallery-thumbs .swiper-wrapper .swiper-slide > div.swiper-img {
	width:100%; 
	overflow: hidden; 
	position:relative;
}
.gallery-top .swiper-wrapper .swiper-slide > div.swiper-img > img {
	position: absolute;
}
.gallery-thumbs .swiper-wrapper .swiper-slide {
	overflow:hidden;
}
.gallery-thumbs .swiper-wrapper .swiper-slide > img {
	position: absolute;
}

.gallery-top img {
    border: 0;
    vertical-align: top;
}

.recipe-main .recipe-top {
	display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.recipe-main .recipe-content {
	position: absolute;
    display: block;
    width: 100%;
    height: auto;
    max-height: 60vh;
    overflow-y: hidden;
    background: #fff;
    z-index: 1050;
}

.swiper-container {
    margin: 0 auto;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

.recipe-main .recipe-view {
	position: absolute;
    width: 110px;
    height: 36px;
    background: #fff;
    border-radius: 4px;
    right: 16px;
    z-index: 1050;
   }
   
   .recipe-main .recipe-view a {
   	display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: url(/cuchenon/img/btn_view.png) no-repeat;
    background-size: cover;
    font-size: 13px;
    color: #3e3e3e;
    line-height: 30px;
    padding: 0 0 0 28px;
    z-index: 4;
    text-align: left;
   }
   
   .recipe-main .titleArea {
   	position: sticky !important;
    width: 100%;
    height: auto;
    padding: 0 20px 15px 20px;
    z-index: 5;
    background: #fff;
    cursor: pointer;
    bottom: auto;
   }
   
   .recipe-main .titleArea ul.topIco {
   	position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0;
    list-style: none;
   }
   
   .recipe-main .titleArea ul.topIco li:first-child {
    display: block;
    float: left;
    width: 70%;
    padding-top: 10px;
    list-style: none;
}

.recipe-main .titleArea ul.topIco li:nth-child(2) {
    display: block;
    float: right;
    width: 30%;
    text-align: right;
    padding-top: 5px;
    list-style: none;
}

.recipe-main .titleArea ul.topIco li .cate {
    display: inline-block;
    font-size: 11px;
    border-radius: 25px;
    padding: 1px 10px;
    background: #f75b5b !important;
  		color: #fff !important;
}

.recipe-main .titleArea ul.topIco li:nth-child(2) a {
    display: inline-block;
    position: relative;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.recipe-main a.favorite {
    background: url(/cuchenon/img/ico/ico_favorite_off.png) no-repeat;
    background-size: cover;
}

.recipe-main a.favorite.on {
    background: url(/cuchenon/img/ico/ico_favorite_on.png) no-repeat;
    background-size: cover;
}

.recipe-main .titleArea ul.subject {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	padding: 0;
	list-style: none;
}

.recipe-main .titleArea ul.subject li {
	display: block;
	width: 100%;
	list-style: none;
}

.recipe-main .titleArea ul.subject li.towOver {
    display: block;
    height: auto;
    overflow: hidden;
    max-height: 42px !important;
}

.recipe-main .titleArea ul.subject .subT {
    display: inline-block;
    font-size: 15px;
    color: #8b8b8b;
}

.recipe-main .titleArea ul.subject h1 {
    font-size: 26px;
    color: #3e3e3e;
    margin-top: -8px;
}

.recipe-main .titleArea ul.subject .dna {
    font-size: 14px;
    color: #8b8b8b;
}

.recipe-main .titleArea ul.subject .colBar {
    margin: 1px 7px 1px 7px;
    color: #dcdcdc;
    font-size: 8px;
}

.recipe-main .titleArea ul.subject span.like {
    background: url(/cuchenon/img/ico/ico_thumb_black.png) no-repeat;
    background-size: 14px auto;
    background-position: center left;
    padding-left: 18px;
    color: #8b8b8b;
}

.recipe-main .titleArea ul.subject .hashtag {
    height: 20px;
    line-height: 18px;
    display: inline;
    position: relative;
    color: #003569;
}

.recipe-main .infoArea {
	display: block;
	position: relative;
	opacity: 0;
	width: 100%;
	height: auto;
	background: #f6f6f6;
	padding-top: 5px;
	z-index: 4;
}

.recipe-main .infoArea ul.bigCate {
	display: inline-block;
	position: relative;
	width: 100%;
	height: auto;
	padding: 0;
	list-style: none;
}

.recipe-main .infoArea ul.bigCate>li {
	display: block;
	width: 100%;
	background: #fff;
}

.recipe-main .underBar {
    border-bottom: 1px solid #eeeeee;
}

.recipe-main .infoArea ul.midCate {
    display: inline-block;
    width: 100%;
    padding: 0 20px;
    list-style: none;
}

.recipe-main .infoArea ul.midCate > li:first-child {
    width: 60%;
    text-align: left;
    color: #242424;
    padding-left: 32px;
}

.recipe-main .infoArea ul.midCate::after {
	clear:both;
}

.recipe-main .infoArea ul.midCate > li {
    display: inline-block;
    float: left;
    font-size: 15px;
    height: 64px;
    line-height: 64px;
}

.recipe-main .mid01 {
    background: url(/cuchenon/img/ico/ico_info_01.png) no-repeat center left;
    background-size: 28px auto;
}

.recipe-main .infoArea ul.midCate > li > a.basket,
.recipe-main .infoArea ul.midCate > li > a.easy {
	font-size:15px;
	color:#4b4948;
	background:url(/cuchenon/img/ico/ico_arrow_right.png) no-repeat center right;
	background-size:6px auto;
	padding-right:11px;
}
.recipe-main .mid01 {
	background:url(/cuchenon/img/ico/ico_info_01.png) no-repeat center left;
	background-size:28px auto;
}
.recipe-main .mid02 {
	background:url(/cuchenon/img/ico/ico_info_02.png) no-repeat center left;
	background-size:28px auto;
}
.recipe-main .mid03 {
	background:url(/cuchenon/img/ico/ico_info_03.png) no-repeat center left;
	background-size:28px auto;
}
.recipe-main .mid04 {
	background:url(/cuchenon/img/ico/ico_info_04.png) no-repeat center left;
	background-size:28px auto;
}

.recipe-main .infoArea ul.midCate > li:nth-child(2) {
    width: 40%;
    text-align: right;
    color: #7b7b7b;
    list-style: none;
}

.recipe-main .infoArea ul.midCate > li {
    display: inline-block;
    float: left;
    font-size: 15px;
    height: 64px;
    line-height: 64px;
    list-style: none;
}
		
.recipe-main .infoArea ul.subText {
    display: none;
    position: relative;
    background: #fbfbfb;
    width: 100%;
    padding: 9px 20px 7px 52px;
    list-style: none;
}

.recipe-main .infoArea ul.subText li {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    list-style: none;
}

.recipe-main .infoArea span.info {
	white-space: pre-line;
}

.recipe-main .infoArea ul.subText li:after {
	clear:both;
}
.recipe-main .infoArea ul.subText li span.left {
	float:left;
	color:#444444;
}
.recipe-main .infoArea ul.subText li span.right {
	float:right;
	color:#8b8b8b;
}
.recipe-main .infoArea ul.subText li span.block {
	float:none;
	clear:both;
	display:block;
}
.recipe-main .infoArea ul.subText li span.block > span {
	display:inline-block;
	width:30%;
	margin-right:3%;
	float:left;
	text-align: center;
	padding:6px 0;
	border-radius: 30px;
	font-family:"NSM";
	border:1px solid #a6a6a6;
	margin-top:7px;
}
.recipe-main .infoArea ul.subText li span.block > span.bg-orange {
	border:none !important;
}
.recipe-main .infoArea ul.subText li > h1 {
	display:block;
	color:#444444;
	font-size:16px;
	font-weight:600;
}
.recipe-main .infoArea ul.subText li > h2 {
	font-family:"NSR";
	color:#444444;
	font-size:14px;
	word-break: keep-all;
}
.recipe-main .infoArea ul.subText li > p {
	display:inline;
}

.recipe-main .plr0 {
    padding: 9px 20px 7px 20px !important;
}

.recipe-main .innerDiv {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.recipe-main .widthWrap {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    overflow-x: auto;
}

.recipe-main .widthWrap ul {
    display: inline-block;
    width: 1500px;
    padding: 0px 0;
    list-style: none;
}

.recipe-main .widthWrap ul li {
    display: inline-block !important;
    width: 28.8vw !important;
    height: auto;
    float: left;
    margin-right: 4px;
    list-style: none;
}

.recipe-main .widthWrap ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    padding: 0;
    text-decoration: none;
}

.recipe-main .widthWrap ul li a img {
    width: 100%;
    height: auto;
    border: 0;
    vertical-align: top;
}

.recipe-main .widthWrap ul li a h1 {
    font-size: 13px;
    line-height: 15px;
    margin-top: 10px;
    padding-right: 10px;
    color: #222222;
    max-height: 30px;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recipe-main .titleArea ul.subject span.like.on {
    background: url(/cuchenon/img/ico/ico_thumb_orange.png) no-repeat;
    background-size: 14px auto;
    background-position: center left;
    padding-left: 18px;
    color: #8b8b8b;
    animation: heartbeat 1s;
}

.recipe-main .customselbox {
    display: block;
    position: relative;
    text-align: left;
}

.recipe-main .ui-checkbox-on {
    font-size: 14px;
    color: #444444;
}

.recipe-main .ui-checkbox-off {
    font-size: 14px;
    color: #cccccc;
}

.recipe-main .ui-btn {
    background: none;
    border: none;
    padding: 0 !important;
    letter-spacing: -1px;
}

.recipe-main .customselbox input[type="checkbox"] {
    display: none;
}

.recipe-main .ui-checkbox-on span {
    display: inline-block;
    position: relative;
    width: 15px !important;
    height: 15px !important;
    margin: -2px 10px 0 0;
    vertical-align: middle;
    background: url(/cuchenon/img/ico/ico_checkbox_on.png) left top no-repeat;
    background-size: 15px 15px;
    cursor: pointer;
}

.recipe-main .ui-checkbox-off span {
    display: inline-block;
    position: relative;
    width: 15px !important;
    height: 15px !important;
    margin: -2px 10px 0 0;
    vertical-align: middle;
    background: url(/cuchenon/img/ico/ico_checkbox_off.png) left top no-repeat;
    background-size: 15px 15px;
    cursor: pointer;
}

.recipe-main .selectArea {
    width: 80%;
    padding: 6px 0 10px 15px;
    margin: 18px auto 20px auto;
    max-height: 140px;
    overflow-y: auto;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.recipe-main .wd50 {
	width: 50% !important;
}

.recipe-main .lhC {
    line-height: 20px !important;
    padding-top: 14px;
}

.recipe-main .Fleft {
    float: left;
}

.recipe-main .clear {
    clear: both !important;
}

/**
 * Recipe sub
 */
.reipce-sub .recipe-content {
	position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow-y: auto;
    background: #fff;
}

.recipe-sub .thumbArea {
	display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.recipe-sub .gallery-top {
	position: relative;
    z-index: 1;
    height: 100%;
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}

.recipe-sub .swiper-pagination {
    bottom: auto;
    left: auto;
    right: 20px;
    width: auto;
    color: #ffffff;
    font-size: 14px;
    border-radius: 10px;
    background: #ec6c00;
}

.recipe-sub .swiper-pagination-current {
    color: #ffffff;
    font-size: 14px;
    padding-left: 10px;
}

.recipe-sub .swiper-pagination-total {
    color: #ffffff;
    font-size: 14px;
    padding-right: 10px;
}

.recipe-sub .swiper-slide {
    background-size: cover;
    background-position: center;
}

.recipe-sub .titleArea {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 20px;
    padding-bottom: 5px;
    z-index: 5;
    background: #fff;
    cursor: pointer;
}

.recipe-sub .titleArea ul.subject {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 15px;
    padding: 0;
    list-style: none;
}

.recipe-sub .titleArea ul.subject li {
    display: block;
    width: 100%;
    list-style: none;
}

.recipe-sub .titleArea ul.subject li span {
    font-size: 14px;
    color: #444444;
}

.recipe-sub .titleArea ul.subject li span {
    font-size: 14px;
}

.recipe-sub .titleArea ul.subject li span.thisStep::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 8px;
    background: #dcdcdc;
    overflow: hidden;
    color: #dcdcdc;
    margin: 0 4px 0 2px;
}

.recipe-sub .titleArea ul.subject h1 {
    font-family: "NSB";
    font-size: 14px;
    color: #444;
    margin-top: 5px;
}

.recipe-sub .titleArea ul.subject p {
    font-size: 14px;
    color: #444;
    letter-spacing: normal;
    white-space: break-spaces;
}

.recipe-sub .factor {
    display: block;
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 100%;
    font-size: 0;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    list-style: none;
}

.recipe-sub .factor li {
    display: inline-block;
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 14px;
    float: left;
    list-style: none;
}

.recipe-sub .factor li:not(:last-child) {
    margin-right: 12px;
}

.recipe-sub .factor li p {
    display: block;
    position: absolute;
    width: 100%;
    font-size: 15px;
    font-family: NSB;
    letter-spacing: -1px;
    color: #222222;
    top: 25%;
}

.recipe-sub .factor li.fire {
    background: #ededed url(/cuchenon/img/ico/ico_factor_fire.png) no-repeat center center;
    background-size: 29px auto;
    border: 2px solid #ff6d6d;
}

.recipe-sub .factor li.time {
    background: #ededed url(/cuchenon/img/ico/ico_factor_time.png) no-repeat center center;
    background-size: 54px auto;
    border: 2px solid #ffae46;
}

.recipe-sub .factor li.speed {
    background: #ededed url(/cuchenon/img/ico/ico_factor_speed.png) no-repeat center center;
    background-size: 37px auto;
    border: 2px solid #efc255;
}

.recipe-sub .factor li.rotation {
    background: #ededed url(/cuchenon/img/ico/ico_factor_rotate.png) no-repeat center center;
    background-size: 34px auto;
    border: 2px solid #6fd1ab;
}

.recipe-sub .factor li.head {
    background: #ededed url(/cuchenon/img/ico/ico_factor_head.png) no-repeat center center;
    background-size: 34px auto;
    border: 2px solid #8c9af1;
}

.recipe-sub a.tip {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    background: #f75002;
    color: #fff;
    font-size: 20px;
    font-family: NSB;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    right: 27px;
    z-index: 100;
    text-decoration: none;
}

.recipe-sub .tipWrap {
    position: absolute;
    display: none;
    width: 80%;
    height: auto;
    text-align: center;
    left: 10%;
    top: 50%;
    z-index: 100;
    background: url(/cuchenon/img/ico/ico_tip_bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 22px 12px 10px 12px;
    overflow: visible;
}

/**
 * Modal
 */
.modal-content {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 70vh;
}

.offcanvas-modal {
    transform: translate(-50%,-50%) scale(.8,.8)!important;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto!important;
    opacity: 0;
    background-color: #f8f8f8 !important;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.offcanvas-modal.show {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1,1)!important;
}

.modal-header {
	width: 100%;
	height: 70px;
	text-align: center;
    font-size: 20px;
    font-weight: 700;
    background-color: #ffffff;
}

.modal-header span {
	margin: auto;
	color: #1b1b1b;
}

.modal-footer {
	justify-content: center !important;
}

.modal-footer a {
	font-size: 18px;
    flex: 1 1 auto;
}

.modal-content {
	border-radius: 0 !important;
}

.btn-modal-cancle {
    color: #747474 !important;
}

.btn-modal-ok {
    color: #ec6c00 !important;
}

/**
 * Range
 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type='range']::-webkit-slider-thumb {
		background: #ec6c00;
	}
}

/**
 * CheckBox
 */
.form-check-input:checked {
    background-color: #ec6c00;
    border-color: #ec6c00;
}

/**
 * Tab
 */
.collapse:not(.show) {
    display: none;
}

/**
 * Accordion
 */

.accordion-button {
    color: #1b1b1b;
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: #1b1b1b;
    background-color: #ffffff;
}

.accordion-none-button::after {
    content: none !important;
}

.accordion-button::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none !important;
}

.accordion-al-button::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none !important;
    transform: none !important;
}

.accordion-mb-button::after {
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #198754;
    background-image: none !important;
    transform: none !important;
}

.accordion-button:focus {
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125) !important;
}

.accordion-item {
	border-radius: 0 !important;
}

.accordion-item .accordion-collapse {
	border-radius: 0 !important;
}

.accordion-body {
    border-radius: 0 !important;
}

/**
 * Android Switch
 */
.android-switch {
    width: 54px;
}

.android-switch, .ios-switch {
    margin: 0;
    padding: 0;
    position: relative;
}

.android-switch input, .ios-switch input {
    display: none;
}

.android-switch *, .ios-switch * {
    cursor: pointer!important;
}

.android-input:checked~.custom-control-label::before {
    background-color: rgba(238,132,0,.5)!important;
}

.android-switch label::before {
    display: block!important;
    content: "";
    pointer-events: all;
    margin-top: 5px;
    width: 53px!important;
    height: 17px!important;
    border-radius: 50px!important;
    background-color: rgba(0,0,0,.07);
    transition: all 250ms ease;
}

.android-input:checked~.custom-control-label::after {
    background-color: #ec6c00 !important;
}

.android-input:checked~.custom-control-label::after {
    border: none!important;
    transform: translateX(27px)!important;
}

.android-switch label::after {
    display: block!important;
    content: "";
    border: solid 1px rgba(0,0,0,.07)!important;
    margin-top: -22px;
    width: 27px!important;
    height: 27px!important;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.07)!important;
    border-radius: 50px!important;
    transition: all 250ms ease;
}

/**
 * Alert
 */

/**
 * Progress
 */
.progress-bar-vertical {
	width: 20px;
	min-height: 100px;
	display: flex;
	align-items: flex-end;
}

.progress-bar-vertical .progress-bar {
	width: 100%;
	height: 0;
	-webkit-transition: height 0.6s ease;
	-o-transition: height 0.6s ease;
	transition: height 0.6s ease;
}

/**
 * UL LI List
 */
.list-custom {
	overflow: hidden;
}

.list-custom .list-group-item {
    display: flex;
}

.list-group-m .list-group-item {
    padding-top: 11px;
    padding-bottom: 11px;
}

.list-custom .list-group-item div, .list-custom .list-group-item * {
    display: block;
}

.list-group * {
    border-color: rgba(0,0,0,.07);
}

.list-custom .list-group-item * {
    align-self: center;
    cursor: pointer;
}

.list-group i:last-child {
    font-size: 16px;
    position: absolute;
    right: 15px;
    transform: translateY(-50%);
    top: 50%;
    padding: 15px;
}


/**
 * Form
 */
.form-custom {
    position: relative;
}
.form-label.form-border i {
    margin-top: -4px;
}

.form-border.form-icon i {
    margin-left: -10px;
}
.form-custom.form-icon i {
    position: absolute;
    font-size: 16px;
    height: 53px;
    width: 40px;
    line-height: 53px;
    text-align: center;
}
.form-border.form-button i.form-icon-button {
    right: 0px;
}
.form-custom.form-button i {
    position: absolute;
    font-size: 16px;
    height: 53px;
    width: 40px;
    line-height: 53px;
    text-align: center;
}

.form-custom:not(.form-floating) * {
    padding-top: 0!important;
}
.form-label.form-border input, .form-label.form-border select, .form-label.form-border textarea {
    height: 45px!important;
}
.theme-light .form-custom input, .theme-light .form-custom select, .theme-light .form-custom textarea {
    border: solid 1px rgba(0,0,0,.07);
}
.form-border.form-icon input, .form-border.form-icon select, .form-border.form-icon textarea {
    padding-left: 30px!important;
}
.form-custom.form-icon input, .form-custom.form-icon select, .form-custom.form-icon textarea {
    padding-left: 40px!important;
}
.form-border.form-button input, .form-border.form-button select, .form-border.form-button textarea {
    padding-right: 30px!important;
}
.form-custom.form-button input, .form-custom.form-button select, .form-custom.form-button textarea {
    padding-right: 40px!important;
}
.form-custom input, .form-custom select, .form-custom textarea {
    height: 53px!important;
    padding: 13px 15px 0!important;
}
.form-border * {
    border-left: 0!important;
    border-right: 0!important;
    border-top: 0!important;
    border-radius: 0!important;
}
.form-select {
	border: 0;
	color: #ec6c00;
}

/**
 * Step
 */
.step {
	display: none;
}
.step.show {
	display: block;
}
.footer.step.show {
	display: flex;
}
.step a.btn {
	height: 100%;
    font-size: 20px;
    line-height: 45px;
}

/**
 * Config
 */
.item-cooker {
	display: none;
}

.item-cooker.show {
	display:block;
}

.item-erange {
	display: none;
}

.item-erange.show {
	display:block;
}

/**
 * Add
 */
#add-list {
	
}

#add-list .dev {
	border: 1px solid #cbcbcb;
    border-radius: 5px;
    margin-bottom: 15px;
    height: 60px;
    padding: 10px;
    line-height: 15px;
}

#add-list .dev span:last-child {
	float: right;
    text-align: right;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}

.add-title {
	font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #333333;
    padding: 2rem;
}

.step-next {
	border-radius: 0;
}

.add-check input {
	zoom: 1.5;
}

.add-check label {
	font-size: 20px;
	color: #333333;
}

/**
 * Color
 */
.color-dark {
	color: #1b1b1b !important;
}

.color-grey {
	color: #747474 !important;
}

.color-white {
	color: #fefefe !important;
}

.color-orange {
	color: #ec6c00 !important;
}

.color-red {
	color: #ce0000 !important;
}

.color-blue {
	color: #003fce !important;
}

.color-green {
	color: #198754 !important;
}

.bg-dark-grey {
	background-color: #444444 !important;
}

.bg-dark-gradient {
	background: linear-gradient(167.95deg, #222222 0%, #444444 100%);
}

.bg-default {
	background-color: #f8f8f8 !important;
}

.bg-grey {
	background-color: #aab2bd !important;
}

.bg-green {
	background-color: #198754 !important;
}

.bg-red {
	background-color: #dc3545 !important;
}

.bg-orange {
	background-color: #ec6c00 !important;
}

.bg-orage-80 {
	background-color: #ec6c0080 !important;
}

.border-orange {
	border: 1px solid #ec6c00;
}

/*
 * Raio
 */
div.radio-wrap {
  display: inline-flex;
  align-items: center;
}

input[type='radio'],
input[type='radio']:checked {
  appearance: none;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 100%;
  margin-right: 0.1rem;
}

input[type='radio'] {
  background-color: #ffffff;
  border: 2px solid #ec6c00;
}
input[type='radio']:checked {
  background-color: #ec6c00;
}

/**
 * Ballon
 */
.ballon {
    position: absolute;
    width: 300px;
    height: 40px;
    right: 20px;
    top: 110px;
    background: #ec6c00;
    color: white;
    border-radius: 5px;
    padding: 1rem;
    z-index: 10;
    font-size: 1rem;
    line-height: 5px;
}


.ballon:after {
       border-top: 15px solid #ec6c00;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    top: 38px;
    left: 220px;
}

/**
 * ETC
 */
.rotate-45 {
	filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0.5);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	display: inline-block;
}

.no-padding {
	padding: 0 !important;
}

.ms-auto {
    margin-left: auto !important;
}

.btn-block {
	width: 100% !important;
}

.btn-border {
	border: 1px solid #1b1b1b;
}

.right-divider {
	border-right: 1px solid rgba(0,0,0,.07);
}

.text-left {
	text-align: left !important;
}

.me-auto {
	margin-right: auto !important;
}

.m-auto {
	margin: auto !important;
}

.ms-auto {
	margin-left: auto !important;
}

.icon {
    line-height: 0;
    display: inline-block;
    text-align: center;
    transition: all 120ms ease;
}

.icon-xs {
    font-size: 11px;
    height: 38px;
    line-height: 38px;
    width: 38px;
    transform: translateY(0);
}

.rounded-s {
    border-radius: 15px!important;
}

.divider {
    position: relative;
    height: 1px;
    display: block;
    background-color: rgba(0,0,0,.07);
    margin-bottom: 30px;
}

.text-right {
	text-align: right !important;
}

.span-info {
	text-indent: -8px;
    margin-left: 16px;
    padding-right: 16px;
}

.rounded-none {
    border-radius: 0 !important;
}

.p-indent {
	text-indent: -8px;
	margin-left: 16px !important;
}

.btn.border-orange {
	border: 1px solid #ec6c00;
    border-radius: 20px;
    color: #ec6c00;
}

.float-right {
	float: right;
}

label.required:after {
    content:" *";
    color: red;
}

.rotate90 {
    transform: rotate(90deg) translateY(-100%);
    -webkit-transform: rotate(90deg) translateY(-100%);
    -ms-transform: rotate(90deg) translateY(-100%);
}
.orient8 {transform: rotate(-90deg);-webkit-transform: rotate(-90deg);-ms-transform: rotate(-90deg);}
.orient3 {transform: rotate(180deg);-webkit-transform: rotate(180deg);-ms-transform: rotate(180deg);}
.orient6 {transform: rotate(90deg);-webkit-transform: rotate(90deg);-ms-transform: rotate(90deg);}
.orientX8 {transform: rotateX(-90deg);-webkit-transform: rotateX(-90deg);-ms-transform: rotateX(-90deg);}
.orientX3 {transform: rotateX(180deg);-webkit-transform: rotateX(180deg);-ms-transform: rotateX(180deg);}
.orientX6 {transform: rotateX(90deg);-webkit-transform: rotateX(90deg);-ms-transform: rotateX(90deg);}
.orientY8 {transform: rotateY(-90deg);-webkit-transform: rotateY(-90deg);-ms-transform: rotateY(-90deg);}
.orientY3 {transform: rotateY(180deg);-webkit-transform: rotateY(180deg);-ms-transform: rotateY(180deg);}
.orientY6 {transform: rotateY(90deg);-webkit-transform: rotateY(90deg);-ms-transform: rotateY(90deg);}
.orientZ8 {transform: rotateZ(-90deg);-webkit-transform: rotateZ(-90deg);-ms-transform: rotateZ(-90deg);}
.orientZ3 {transform: rotateZ(180deg);-webkit-transform: rotateZ(180deg);-ms-transform: rotateZ(180deg);}
.orientZ6 {transform: rotateZ(90deg);-webkit-transform: rotateZ(90deg);-ms-transform: rotateZ(90deg);}

.br-1 {
	border-radius: 0.25rem;
}

.br-2 {
	border-radius: 0.5rem;
}

.br-3 {
	border-radius: 0.75rem;
}

.b-0 {
	border: 0;
}

.bxs-1 {
	box-shadow: 0 8px 24px 0 rgb(0 0 0 / 8%);
}

.fs-7 {
    font-size: 0.8rem!important;
}

.fs-8 {
    font-size: 0.5rem!important;
}

.fs-9 {
    font-size: 0.25rem!important;
}

