@charset "utf-8";
/*
	Description: initial setting
	Version: 1.0
	Author: idealgrow
*/
/*
===== CONTENTS ===========================================

	1: BASE LAYOUT

==========================================================
*/
/*
===== 1: BASE LAYOUT =====================================
*/
main#containar {
  background: #f5f5f5;
  min-height: calc(100vh - 321px);
}
header {
  position: relative;
}
header #logo {
  padding: 10px 20px;
  text-align:center;
}
header #logo img {
  height: 50px;
  width: auto;
}
header #logo a{
display:inline-block;
}
header nav {
  display: none;
}
header nav ul {
  display: flex;
  padding: 0 10px 10px 10px;
}
header nav ul li {
  font-size: 14px;
  width: 30%;
  margin-right: 5%;
  text-align: center;
}
header nav ul.loginAfter li {
  font-size: 14px;
  width: 23.5%;
  margin-right: 2%;
  text-align: center;
  position: relative;
}
header nav ul.loginAfter li .icf-bell {
  font-size: 24px;
  line-height: 0.8;
}
header nav ul.loginAfter li .alart {
  position: absolute;
  left: 54%;
  top: 13px;
  background: #f00;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  pointer-events: none;
}
header nav ul li:last-of-type {
  margin-right: 0;
}
header nav ul li a {
  display: block;
  background: #f5f5f5;
  padding: 20px 0 10px 0;
  border-radius: 5px;
}
header nav ul li a i {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}
header nav .clientBtn {
  padding: 15px 20px;
}
header nav .clientBtn a {
  display: block;
  background: #fdc400;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 6px;
  position: relative;
}
header nav .clientBtn a:after {
  font-family: 'icomoon' !important;
  content: "\e902";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
#navTrigger {
  position: absolute;
  right: 20px;
  top: 30px;
  width: 18px;
  height: 16px;
  border-top: solid 2px #000;
}
#navTrigger span:before {
  content: "";
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
#navTrigger span:after {
  content: "";
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s;
}
#navTrigger.active {
  border-top: none;
}
#navTrigger.active span:before {
  top: 7px;
  transform: rotate(45deg);
}
#navTrigger.active span:after {
  bottom: 7px;
  transform: rotate(-45deg);
}
/**footer **/
footer {
  border-top: solid 1px #e8e8e8;
  padding: 25px 20px 20px 20px;
}
footer #footLogo {
  margin-bottom: 20px;
}
footer #footLogo img {
  height: 30px;
  width: auto;
  margin: 0 auto;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
}
footer ul li {
  text-align: center;
  width: 50%;
  border-bottom: dotted 1px #e8e8e8;
}
footer ul li:first-of-type {
  width: 100%;
  border-top: dotted 1px #e8e8e8;
}
footer ul li:nth-of-type(2) {
  border-right: dotted 1px #e8e8e8;
}
footer ul li a {
  display: block;
  padding: 10px;
  color: #000;
}
footer .copy {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
}
/** breadcrumbs **/
#breadCrumbs {
  padding: 10px 10px;
  margin: 0 0 10px 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  background: #fff;
  border-bottom: solid 1px #ddd;
}
#breadCrumbs::-webkit-scrollbar {
  height: 2px;
}
#breadCrumbs::-webkit-scrollbar-track {
  border-radius: 2px;
  background: #eee;
}
#breadCrumbs::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #21b8d7;
}
#breadCrumbs ol {
  display: table;
  padding-right: 20px;
}
#breadCrumbs ol li {
  font-size: 14px;
  display: table-cell;
  white-space: nowrap;
  vertical-align: middle;
  padding: 5px 26px 5px 10px;
  position: relative;
}
#breadCrumbs ol li a {
  color: #000;
}
#breadCrumbs ol li:last-child {
  padding-right: 0;
  color: #21b8d7;
}
#breadCrumbs ol li:last-child:after {
  display: none;
}
#breadCrumbs ol li:after {
  position: absolute;
  display: block;
  font-family: 'icomoon' !important;
  content: "\e902";
  font-size: 10px;
  top: 8px;
  right: 8px;
  color: #bdbdbd;
}
/**modal**/
.modal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: none;
}
.modal__bg {
  background: rgba(255, 255, 255, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  border-radius: 10px;
  background: #fff;
  left: 50%;
  padding: 30px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
.modal__content textarea {
  margin-bottom: 20px;
}
.mdTit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #21b8d7;
}
.decideBtn {
  display: flex;
  width: 100%;
}
.decideBtn li {
  width: 46%;
}
.decideBtn li:last-of-type {
  margin-left: 8%;
}
.decideBtn li:first-of-type input {
  background: #21b8d7;
  color: #fff;
  font-weight: bold;
  border: none;
}
.decideBtn li:first-of-type input:hover {
  background: #000;
}
.decideBtn li a {
  display: block;
  border-radius: 5px;
  text-align: center;
  color: #000;
  padding: 13px;
  background: #dedede;
  cursor: pointer;
}
.decideBtn li a:hover {
  opacity: 0.4;
}
.toggleFavo {
  color: #adadad;
  cursor: pointer;
}
.toggleFavo.active {
  color: #21b8d7;
}
.checkList {
  padding-bottom: 10px;
}
.checkList li {
  margin-bottom: 10px;
}
#drawer {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 900;
  background: #fff;
  padding: 30px;
  overflow-y: scroll;
  transition: all 0.6s;
}
#drawer .close {
  text-align: center;
  border-bottom: dotted 1px #ddd;
  padding-bottom: 20px;
  cursor: pointer;
}
#drawer .close i {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 3px 0;
}
#drawer.active {
  right: 0;
}
#drawer li {
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: dotted 1px #ccc;
}
#drawer li span {
  display: block;
  font-size: 14px;
}
#drawer li.new:before {
  content: "";
  background: #21b8d7;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 18px;
}
#mdFavorite p,#mdConfig p,#mdMailchange p {
  text-align: center;
}
#mdFavorite ul,#mdConfig ul,#mdMailchange ul {
  justify-content: center;
}
#mdFavorite .decideBtn li,#mdConfig .decideBtn li,mdMailchange .decideBtn li{
  width: 100%;
  margin-left: 0;
}
#mdLoginAlert p{
	text-align: center;
}
#mdLoginAlert ul li{
	margin-left: 0;
	width: 100%;
}
@media screen and (min-width: 600px) {
  .modal__content {
    max-width: 500px;
  }
  .mdTit {
    font-size: 20px;
  }
  .decideBtn {
    display: flex;
    width: 100%;
  }
  .decideBtn li {
    width: 48%;
  }
  .decideBtn li:last-of-type {
    margin-left: 4%;
  }
}
@media screen and (min-width: 1025px) {
  main#containar {
    background: #f5f5f5;
    min-height: calc(100vh - 185px);
  }
  header {
    height: 114px;
  }
  header #logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
  }
  header #logo img {
    height: 62px;
    width: auto;
    margin: 0;
  }
  header nav {
    display: block;
  }
  header nav ul {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    padding: 0;
    width: 254px;
  }
  header nav ul.loginAfter {
    width: 340px;
    right: 0;
  }
  header nav ul li {
    font-size: 14px;
    width: 33.3%;
    margin-right: 0;
    position: relative;
  }
  header nav ul:before {
    content: "";
    background: #d9d9d9;
    width: 1px;
    height: 80%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  header nav ul li:after {
    content: "";
    background: #d9d9d9;
    width: 1px;
    height: 80%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  header nav ul.loginAfter li {
    margin-right: 0;
  }
  header nav ul li a {
    background: none;
  }
  header nav .clientBtn {
    position: absolute;
    right: 290px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
  }
  header nav .clientBtn a {
    padding: 6px 35px 6px 15px;
    position: relative;
  }
  header nav .clientBtn a:hover {
    background: #000;
  }
  header #navTrigger {
    display: none;
  }
  /**footer **/
  footer {
    border-top: solid 1px #e8e8e8;
    padding: 20px 0;
  }
  footer #footerIn {
    display: flex;
    width: 1000px;
    margin: 0 auto;
    align-items: center;
  }
  footer #footLogo {
    margin-bottom: 0;
    width: 180px;
  }
  footer #footLogo img {
    margin: 0;
  }
  footer ul {
    width: 400px;
  }
  footer ul li {
    text-align: left;
    width: auto;
    border-bottom: none;
  }
  footer ul li:first-of-type {
    width: auto;
    border-top: none;
  }
  footer ul li:nth-of-type(2) {
    border-right: none;
  }
  footer ul li a {
    padding: 0 10px;
    color: #000 !important;
  }
  footer .copy {
    width: 420px;
    text-align: right;
    padding-top: 0;
  }
  /** breadcrumbs **/
  #breadCrumbs {
    padding: 10px 20px;
    margin: 0 auto;
  }
  #drawer {
    right: -40%;
    width: 40%;
    max-width: 400px;
  }
}