/* -------------------------------- 

CD-header style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cd-header{
  background-color: #331d35;
}
.cd-main-content {
  position: relative;
  min-height: 115.5px;
}
.cd-main-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-main-content.is-fixed .cd-tab-filter-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.cd-main-content.is-fixed .cd-gallery {
  padding-top: 31px !important;
}
.cd-main-content.is-fixed .cd-filter {
  position: fixed;
  height: 115.5px;
  overflow: hidden;
}
.cd-main-content.is-fixed .cd-filter form {
  height: 115.5px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-main-content.is-fixed .cd-filter-trigger {
  position: fixed;
}

/* -------------------------------- 
tab-filter 
-------------------------------- */
.cd-tab-filter-wrapper {
  background-color: transparent;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.00);
  z-index: 1;
}
.cd-tab-filter-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.cd-tab-filter {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 50px;
  width: 240px;
  margin: 0 auto;
  top: 20px;
  z-index: 1;
}
.cd-tab-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 2%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-tab-filter ul {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.90);
  box-shadow: inset 0 -2px 0 #41307c;
  border-radius: 8px;
}
.cd-tab-filter li {
  display: none;
}
.cd-tab-filter li:first-child {
  /* this way the placehodler is alway visible */
  display: block;
}
.cd-tab-filter a {
  display: block;
  /* set same size of the .cd-tab-filter */
  height: 50px;
  width: 240px;
  line-height: 50px;
  padding-left: 14px;
  color: #41307c;
}
.cd-tab-filter a:hover {
  color: #41307c;
  font-weight: bold;
  border-radius: 8px;
  background-color: rgba(202, 209, 215, 0.50);
}
.cd-tab-filter a.selected {
  background: #41307c;
  color: #ffffff;
  border-radius: 8px;
}
.cd-tab-filter.is-open::after {
  /* small arrow rotation */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.cd-tab-filter.is-open ul {
  box-shadow: inset 0 -2px 0 #41307c, 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-tab-filter.is-open ul li {
  display: block;
}
.cd-tab-filter.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: .4;
}
@media only screen and (min-width: 768px) {
  .cd-tab-filter {
    /* tabbed navigation style on medium devices */
    width: auto;
    cursor: auto;
  }
  .cd-tab-filter::after {
    /* hide the arrow */
    display: none;
  }
  .cd-tab-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: center;
  }
  .cd-tab-filter li {
    display: inline-block;
  }
  .cd-tab-filter li.placeholder {
    display: none !important;
  }
  .cd-tab-filter a {
    display: inline-block;
	margin: 0 0.3em;
    padding: 0 0.3em;
    width: auto;
    color: #989898;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
  }
  .no-touch .cd-tab-filter a:hover {
    color: #41307c;
  }
  .cd-tab-filter a.selected {
    background: rgba(255, 255, 255, 0.25);
    color: #41307c;
    /* create border bottom using box-shadow property */
    box-shadow: inset 0 -2px 0 #41307c;
	border: #41307c 2px solid;
  }
  .cd-tab-filter.is-open ul li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1199px) {
  .cd-tab-filter {
    /* tabbed navigation on big devices */
    width: 100%;
    float: right;
    margin: 0;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-tab-filter a {
    display: inline-block;
	margin: 0 1em;
    padding: 0 0.5em;
    width: auto;
    color: #989898;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
  }
  .cd-tab-filter.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 
gallery 
-------------------------------- */
.cd-gallery {
  margin: 30px 0% 0px;
  padding: 30px 0%;
  width: 100%;
}
.cd-gallery li {
  margin-bottom: 1.0em;
  margin: 0;
  padding: 0;
  display: none;
}
.cd-gallery li.gap {
  /* used in combination with text-align: justify to align gallery elements */
  opacity: 0;
  height: 0;
  display: inline-block;
}
.cd-gallery img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.cd-gallery .cd-fail-message {
  display: none;
  text-align: center;
}
/*@media (min-width: 320px) and (max-width: 479px) {*/
@media only screen and (max-width: 479px){
  .cd-gallery {
    padding: 30px 5% 13%;
  }
  .cd-gallery li {
    width: 64%;
	margin-left: 1.35%;
    margin-bottom: 0.5em;
  }
  #k-magazine .col-md-3{
	margin-left:10%;
  }
  #k-magazine .view h2{
	font-size: 26px;
    line-height: 40px;
	margin-bottom:2%;
  }
  #k-magazine .view p {
    font-size: 24px;
    line-height: 28px;
    padding: 5px;
  }
  #k-teaching .box_white {
	margin-left:10%;
	width:80%;
  }
  #k-teaching .view h2 {
    font-size: 30px;
    line-height: 36px;
    padding: 10px 0px 0px;
  }
  #k-teaching .view p {
    font-size: 14px;
    line-height: 24px;
    padding:0px 15px;
  }
  #k-teaching ul li {
	font-size:20px;
	line-height:32px;
	list-style-type:none;
  }
}	
@media (min-width: 480px) and (max-width: 767px) {
  .cd-gallery {
    padding: 30px 5% 13%;
  }
  .cd-gallery li {
    width: 40%;
	margin-left: 1.35%;
    margin-bottom: 0.5em;
  }
  #k-magazine .col-md-3{
	margin-left:27%;
	margin-right:15%;
  }
  #k-magazine .view h2{
	font-size: 30px;
    line-height: 40px;
  }
  #k-magazine .view p {
    font-size: 26px;
    line-height: 32px;
    padding: 8px;
  }
  #k-teaching .box_white {
	margin-left:10%;
	width:80%;
  }
  #k-teaching .view h2 {
    font-size: 30px;
    line-height: 36px;
    padding: 10px 0px 0px;
  }
  #k-teaching .view p {
    font-size: 18px;
    line-height: 36px;
    padding:0px 30px;
  }
  #k-teaching ul li {
	font-size:20px;
	line-height:32px;
	list-style-type:none;
  }
}	
@media only screen and (min-width: 768px) {
  .cd-gallery {
    padding: 30px 5% 13%;
  }
  .cd-gallery ul {
    text-align: justify;
  }
  .cd-gallery ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-gallery li {
    width: 30%;
	margin-left: 1.35%;
    margin-bottom: 0.5em;
  }
  #k-magazine .container-fluid{
	margin-left:10%;
	margin-right:10%;
  }
  #k-magazine .col-md-3{
	margin-left:2.5%;
	padding-left:0px;
	display:inline-block;
	width:46%;
  }
  #k-magazine .view h2{
	font-size: 24px;
    line-height: 40px;
  }
  #k-magazine .view p {
    font-size: 22px;
    line-height: 26px;
    padding: 5px;
  }
  #k-teaching .box_white {
	width:28%;
	margin-left:4%;
  }
  #k-teaching .view h2 {
    font-size: 24px;
    line-height: 30px;
    padding: 10px 0px 0px;
  }
  #k-teaching .view p {
    font-size: 12px;
    line-height: 22px;
    padding:0px 10px;
  }
  #k-teaching ul li {
	font-size:16px;
	line-height:26px;
	list-style-type:none;
  }
}
@media only screen and (min-width: 991px) {
  .cd-gallery {
    padding: 30px 3% 13%;
  }
  .cd-gallery ul {
    text-align: justify;
  }
  .cd-gallery ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-gallery li {
    width: 22%;
	margin-left: 1.35%;
    margin-bottom: 0.5em;
  }
  #k-magazine .container-fluid{
	margin-left:10%;
	margin-right:10%;
  }
  #k-magazine .col-md-3{
	margin-left:2.5%;
	padding-left:0px;
	display:inline-block;
	width:46%;
  }
  #k-magazine .view h2{
	font-size: 32px;
    line-height: 40px;
  }
  #k-teaching .box_white {
	width:26%;
	margin-left:5%;
  }
  #k-teaching .view h2 {
    font-size: 30px;
    line-height: 36px;
    padding: 20px 0px 0px;
  }
  #k-teaching .view p {
    font-size: 16px;
    line-height: 24px;
    padding:0px 20px;
  }
  #k-teaching ul li {
	font-size:20px;
	line-height:34px;
	list-style-type:none;
  }
}
@media only screen and (min-width: 1199px) {
  .cd-gallery {
    padding: 30px 0% 13%;
    float: right;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-gallery li {
    width: 14.8%;
	margin-left: 1.35%;
  }
  .cd-gallery.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
  #k-magazine .container-fluid{
	margin-left:-1%;
	margin-right:0%;
  }
  #k-magazine .col-md-3{
	margin-left:0.5%;
	padding-left:0px;
	display:inline-block;
	width:24.5%;
  }
  #k-magazine .view p {
    font-size: 24px;
    line-height: 23px;
    padding: 8px;
  }
}
@media only screen and (min-width: 1399px) {
  #k-magazine .container-fluid{
	margin-left:4.5%;
	margin-right:4.5%;
  }
  #k-magazine .col-md-3{
	margin-left:1.0%;
	padding-left:0px;
	display:inline-block;
	width:24%;
  }
  #k-magazine .view p {
    font-size: 26px;
    line-height: 32px;
    padding: 8px;
  }
}
@media (min-width: 1399px) and (max-width: 1520px) {
  #k-magazine .view p {
    line-height: 27px;
  }
}

/* -------------------------------- 
filter 
-------------------------------- */
.cd-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cd-filter::before {
  /* top colored bar */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #41307c;
  z-index: 2;
}


/* -------------------------------- 

View style

-------------------------------- */
.view {
   width: auto;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   /*margin: 10px 0;*/
   float: left;
   border: 0px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   box-shadow:0px 0px 8px -2px rgba(20%,20%,40%,0.5);
   cursor: default;
   background: transparent;
   border-radius:15px;
   margin-bottom:20px;
}
.view .mask,.view .content {
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.view img {
   display: block;
   position: relative;
   width: auto;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   background:rgba(255,255,255,0.3);
   padding:10px;
   border-radius:15px;
   box-shadow:0px 0px 8px -2px rgba(20%,20%,40%,0.5);
}
.view h2 {
   color: #fff;
   text-align: center;
   position: relative;
   font-family: 'Roboto', Arial, Helvetica, sans-serif;
   /*font-size: 24px;*/
   font-weight: 700;
   /*line-height: 40px;*/
   padding: 8px 6px;
   margin: 0px 0 20px 0;
   border-top-left-radius:15px;
   border-top-right-radius:15px;
}
.view .h2 {
   margin-bottom: 0px;
}
#Aplus { background: rgba(215, 0, 81, 0.75);}
#fourU { background: rgba(3, 110, 184, 0.75);}
#ED { background: rgba(195, 13, 35, 0.75);}
#Aplus_n { background: rgba(228, 121, 119, 1.0);}
#fourU_n { background: rgba(0, 159, 180, 1.0);}
#ED_n { background: rgba(231, 0, 18, 1.0);}
#AppQR { background: rgba(18, 18, 18, 0.75);font-family:"微軟正黑體";}
.view p, .view p a {
   font-family:"微軟正黑體";
   /*font-size: 22px;*/
   /*font-weight: 600;*/
   /*line-height: 26px;*/
   position: relative;
   color: #727171;
   /*padding: 5px;*/
   margin:0;
   text-align: center;
}
.view p:hover { background-color:rgba(255,255,255,0.7);  color: #3e3a39;}
.view a.info {
   display: inline-block;
   font-size: 15px;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
   border-radius: 8px;
   margin: 42% 0;/* -- 更改 --*/
}
.view a.info:hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}
.view-margin {
   margin: -10px 3px 0;
}
/* -------------------------------- 

k-teaching View style

-------------------------------- */
#k-teaching .box_white {
	/*width:25%;
	margin-left:7%;*/
	padding:10px;
	display:inline-block;
}
#k-teaching .box_white:hover {
	background-color:rgba(255,255,255,0.6);
}
.box_white ul{
	border-bottom:rgba(102,102,102,1) solid 1px;
}
#k-teaching .view {
   width:100%;
   box-shadow: none;
   border-radius:0px;
   border-bottom:rgba(102,102,102,1) solid 1px;
}
#k-teaching .view img {
   background: none;
   padding: 0px;
   margin:0 auto;
   border-radius: 0px;
   box-shadow: none;
}
#k-teaching .view h2 {
   font-family: "微軟正黑體", 'Roboto', Arial, Helvetica, sans-serif;
   /*font-size: 30px;*/
   font-weight: 600;
   /*line-height: 36px;
   padding: 25px 0px 0px;*/
   margin: 0;
}
#k-teaching .view p {
   /*font-size: 16px;
   line-height: 26px;*/
   color: #fff;
   text-align: left;
   /*padding:0px 25px;*/
   text-align:justify;
}
#k-teaching .view p:hover {
	background-color:transparent;
}
#k-teaching .view-first .mask:hover { background-color:rgba(0,74,152,0.9); }
#k-teaching ul li {
	/*font-size:20px;
	line-height:34px;*/
	font-family: "微軟正黑體", 'Roboto', Arial, Helvetica, sans-serif;
	color:#595757;
}
#k-teaching ul li:hover, #k-teaching ul p:hover{
	color:#4f81bd;
}
#k-teaching ul p { text-align:right;}
/* -------------------------------- 

p_mag View style

-------------------------------- */
#p_mag .view-first .mask { background-color:rgba(0,0,0,0.8); }
#p_mag .view-first img { padding:5px; }
#p_mag .view-first:hover img { opacity: 0.3; }
#p_mag .view-first a {
   font-size: 30px;
   line-height: 50px;
   color: #fff;
   /*padding:0px 25px;*/
   text-align: center;
}
#p_mag .view-first a:hover { color: #333; }
/* -------------------------------- 
first 
-------------------------------- */
.view-first img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.view-first .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background-color: rgba(218,222,226, 0.95);
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}
.view-first h2 {
   -webkit-transform: translateY(-100px);
   -moz-transform: translateY(-100px);
   -o-transform: translateY(-100px);
   -ms-transform: translateY(-100px);
   transform: translateY(-100px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
.view-first p {
   -webkit-transform: translateY(100px);
   -moz-transform: translateY(100px);
   -o-transform: translateY(100px);
   -ms-transform: translateY(100px);
   transform: translateY(100px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.view-first:hover img {
   -webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
   opacity: 0;
}
.view-first a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
.view-first:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
.view-first:hover h2,
.view-first:hover p,
.view-first:hover a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   -webkit-transform: translateY(0px);
   -moz-transform: translateY(0px);
   -o-transform: translateY(0px);
   -ms-transform: translateY(0px);
   transform: translateY(0px);
   z-index: 100;
}
.view-first:hover p {
   -webkit-transition-delay: 0.1s;
   -moz-transition-delay: 0.1s;
   -o-transition-delay: 0.1s;
   -ms-transition-delay: 0.1s;
   transition-delay: 0.1s;
}
.view-first:hover a.info {
   -webkit-transition-delay: 0.2s;
   -moz-transition-delay: 0.2s;
   -o-transition-delay: 0.2s;
   -ms-transition-delay: 0.2s;
   transition-delay: 0.2s;
}
.view-first span.caret {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   display:none;
}
.view-first:hover span.caret {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 100;
   display:inline-block;
}

/* -------------------------------- 
soon 
-------------------------------- */
.view-soon img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.view-soon .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background: rgba(138, 198, 20, 0.95) url("../img/view-comingsoon.png") center center no-repeat;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}
.view-soon:hover img {
   -webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
}
.view-soon:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
/* -------------------------------- 
soon 
-------------------------------- */
.view-soon_g img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.view-soon_g .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background: rgba(202, 209, 215, 0.95) url("../img/view-comingsoon_g.png") center center no-repeat;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}
.view-soon_g:hover img {
   -webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
}
.view-soon_g:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
/* -------------------------------- 
magazine QRcode 
-------------------------------- */
span.QRcode{
    background:#fff;
    border:0px solid #dfdfdf;
	border-radius:6px;
    color:#585858;
    font-size:18px;
    height:auto;
    letter-spacing:1px;
    line-height:42px;
    position:relative;
    text-align:center;
    text-transform:uppercase;
	white-space:nowrap;
    top:10px;
    left:0;
    display:none;
	margin-bottom:15px;
    padding:0px 25% 10%;
    
}
span.QRcode:after{
    content:'';
    position:absolute;
    top:-5px; 
    width:10px;
    height:10px;
    border-top:10px solid #fff;
    border-left:10px solid #fff;
    background:#f8f8f8;
    left:50%;
    margin-left:-4px;
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
}
span.QRcode img{
    border:1px solid #dfdfdf;
	display:block;
	width:auto;
	height:auto;
	max-width: 100%;
	max-height:100%;
	margin-top:8px;
}
p:hover span.QRcode{
    display:block;
}
p:hover span.QRcode img{
    display:block;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
.view p.QRcode_app:hover { background-color:rgba(255,255,255,0.0); color: #3e3a39;}
.view-first:hover p.QRcode_app > img, p.QRcode_app:hover > img {
    display:block;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   background:rgba(255,255,255,0.0);
   padding:3% 10% 15%;
   border-radius:0px;
   box-shadow:none;
}
.view p.QRcode_app a img {
    display:block;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   background:rgba(255,255,255,0.0);
   padding:3% 10% 15%;
   border-radius:0px;
   box-shadow:none;
  }
/* -------------------------------- 
Faq List Accordion
-------------------------------- */
.card-container {
  margin-top: -20px;
  padding: 10px 0 10px;
}
.card-container h2 {
  margin:14px 0 2px 12px;
  font-size: 2.2rem;
  position: relative;
}
.card-container h2:before {
  position: absolute;
  content: " ▎";
  font-size:0.75em;
  margin-top: 3px;
  margin-left: -12px;
}
.list-group-item.active {
  background-color: #009ee7;
  border-color: #009ee7;
}
.faq-list .card {
  background: transparent;
  border-bottom: 1px solid #aaa;
}
.faq-list .card a {
  color: #009ee7;
  text-decoration: none;
}
.faq-list .card .card-header.activestate {
  border-width: 1px;
/*  border-bottom: 1px solid #009ee7;*/
}
.faq-list .card .card-header {
  padding: 0;
  border-width: 0;
}
.card-container .card-header, .card-container .card-footer {
  padding: .9rem 1.5rem;
}
.faq-list>.card .card-header {
  margin-bottom: -1px;
}
.card .card-header {
  background: transparent;
  border: none;
}
.card .card-header .h3 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
}
.faq-list.faq-type-1 .card .card-header > a.collapsed,
.faq-list.faq-type-2 .card .card-header > a.collapsed,
.faq-list.faq-type-3 .card .card-header > a.collapsed {
  color: #324148;
}
.faq-list.faq-type-1 .card .card-header > a.collapsed:after,
.faq-list.faq-type-2 .card .card-header > a.collapsed:after,
.faq-list.faq-type-3 .card .card-header > a.collapsed:after {
  content: "\e259";
}
.faq-list.faq-type-1 .card .card-header > a::after,
.faq-list.faq-type-2 .card .card-header > a::after,
.faq-list.faq-type-3 .card .card-header > a::after {
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  position: absolute;
  content: "\e260";
  font-size: 1rem;
  top: 3rem;
  right: 8px;
}
.faq-list .card:first-of-type .card-header:first-child > a {
  border-top: 1px solid #004998;
}
.faq-list.faq-type-1 .card .card-header > a,
.faq-list.faq-type-2 .card .card-header > a,
.faq-list.faq-type-3 .card .card-header > a {
  font-size: 1.8rem;
  line-height: 1.25;
  padding: 1.5rem 2rem 1rem 1.5rem;
  display: flex;
  align-items: center;
  text-align: left;
  border-radius: 0rem;
  border-bottom: 1px solid transparent;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-blue-box {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.5rem 1.65rem;
  color: #fff;
  border: #009ee7 solid 1px;
  border-radius: 2.5rem;
}
.btn-blue-box:focus,
.btn-blue-box.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.btn-blue-box:hover {
  color: #fff;
  background-color: #009ee7;
  border-color: #009ee7;
}
.btn-blue-box:active,
.btn-blue-box.active,
.open > .dropdown-toggle.btn-blue-box {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #e6e6e6;
}
.card-body a.btn {
  color: #fff;
  background-color: #009ee7;
}
.card-body a {
  color: #009ee7;
  font-size: 1.1em;
}
.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  margin-bottom: 2rem;
  padding: 0rem 2rem 1.5rem;
  font-size: 1.5rem;
  background-color: #ececec;
  border-radius: 1.25rem;
}
.card-body p, .card-body p.answer {
  padding: 0.5rem 0.25rem 0rem;
  line-height: 1.35;
}
.card-body p.answer {
  padding-top: 1.5rem;
}
.card-body ul, .card-body ol {
  color: #080808;
  margin-left: 1.75rem;
}
.card-body ul.disc li {
  list-style-type: disc;
}
.card-body ol.decimal li {
  list-style-type: decimal;
}
.card-body ol.decimal li ul.disc li {
  list-style-type: disc;
  margin-left: -1.75rem;
}
.card-body ul li, .card-body ol li {
  line-height: 1.35;
  margin-top: 8px;
  margin-bottom: 8px;
}
.card-body ul > ul {
  margin-left: 1.75rem;
}
.card-body ul li::marker {
  color: #003a7a;
  font-size: 1.2rem;
}
.card-body ul > ul li::marker {
  color: #009ee7;
}
.card-body strong.d-block {
  display: block;
}
/* -------------------------------- 
Description-box 
-------------------------------- */
.description-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 0){
    .description-box{
        flex-direction: column;
        gap: 0.5em;
    }
}
@media (min-width: 600px){
    .description-box{
        flex-direction: row;
        gap: 1em;
    }
}