﻿/* example of responsive use */
/*
    .navbar{
        @media @screen-mob-lg-min {
            top: 26px;
        }
    }
*/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  content: '';
}
.cd-faq-items ol,
.cd-faq-items ul {
  list-style: none;
  margin: 0;
  padding: 5px 0px;
  font-size: 12px;
}
@media only screen and (min-width: 992px) {
  .cd-faq-items ol,
  .cd-faq-items ul {
    padding: 30px 30px 30px 30px;
  }
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body::after {
  /* overlay layer visible on small devices when the right panel slides in */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 83, 89, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
body.cd-overlay::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 768px) {
  body::after {
    display: none;
  }
}
a {
  color: #003F6E;
  /*#2ba1fc #003F6E #7FC8FF;*/
  text-decoration: none;
}
/* -------------------------------- 

Main components 

-------------------------------- */
.faq-area {
  margin-right: -20px;
  padding: 0px;
}
@media screen-md-min {
  .faq-area {
    margin-right: 0px;
    padding: 20px;
  }
}
.faq-area-cont {
  background-color: #f3f3f5;
  border-width: 0px;
  border-radius: 10px;
  padding: 0px 20px;
}
@media screen-md-min {
  .faq-area-cont {
    padding: 0px 0px;
  }
}
.cd-faq {
  width: 700px;
  /*90%;*/
  max-width: 100%;
  /*1024*/
  margin: 0px;
  position: relative;
  box-shadow: none;
}
.cd-faq:after {
  content: "";
  display: table;
  clear: both;
}
.cd-faq-items {
  position: static;
  height: auto;
  float: none;
  top: 0;
  right: 0;
  background: none;
  background-color: transparent;
  padding: 0;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) translateX(0);
  -moz-transform: translateZ(0) translateX(0);
  -ms-transform: translateZ(0) translateX(0);
  -o-transform: translateZ(0) translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform .3s;
  width: 100%;
}
.cd-faq-group {
  /* hide group not selected */
  display: block;
}
.cd-faq-group.selected {
  display: block;
}
.cd-faq-group .cd-faq-title {
  background: transparent;
  box-shadow: none;
  margin: 1em 0;
}
.no-touch .cd-faq-group .cd-faq-title:hover {
  box-shadow: none;
}
.cd-faq-group .cd-faq-title h2 {
  text-transform: uppercase;
  font-size: 16px;
  /*
  font-size: 0.75rem;*/
  font-weight: 700;
  color: #606060;
  /* #bbbbc7;*/
}
.no-js .cd-faq-group {
  display: block;
}
.cd-faq-group > li {
  background: #ffffff;
  margin-bottom: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}
.no-touch .cd-faq-group > li:hover {
  box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
}
.cd-faq-group .cd-faq-title {
  margin: 0em 0 1em;
}
/*
.cd-faq-group:first-child .cd-faq-title {
    margin-top: 0;
}
*/
.cd-faq-trigger {
  position: relative;
  display: block;
  margin: 1.6em 0 .4em;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  padding: 24px 72px 24px 24px;
}
@media only screen and (min-width: 992px) {
  .cd-faq-trigger {
    font-size: 24px;
  }
}
.cd-faq-trigger::before,
.cd-faq-trigger::after {
  /* arrow icon on the right */
  position: absolute;
  right: 24px;
  top: 50%;
  height: 2px;
  width: 13px;
  background: #003F6E;
  /* #7FC8FF;*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.cd-faq-trigger::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 32px;
}
.cd-faq-trigger::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.content-visible .cd-faq-trigger::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.content-visible .cd-faq-trigger::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-faq-content p {
  font-size: 14px;
  line-height: 1.4;
  color: #606060;
}
.cd-faq-content {
  display: none;
  padding: 0px 24px 10px 24px;
  /* 0 24px 30px;*/
}
.cd-faq-content p {
  line-height: 1.6;
}
.no-js .cd-faq-content {
  display: block;
}