@charset "utf-8";

.coming-soon {
  margin: 20% 0 0;
  text-align: center;
}

#reply-modal header{
  background: #eee;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 3px 3px 0 0;
  width: 100%;
}
#reply-modal header span{
  display: inline-block;
  float: left;
  padding: 0;
  text-align: left;
  color: #000;
  height: 65px;
  vertical-align: middle;
  line-height: 65px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}
#reply-modal header a:not(.active):hover{
  box-shadow: inset 0 -10px 20px -10px #aaa
}
#reply-modal header a.active{
  background: #fff;
  color: #777;
}
#reply-modal .sections{
  overflow: hidden;
}
#reply-modal section{
  padding: 30px;
}
#reply-modal section input:not([type="checkbox"]), #reply-modal section button{
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  margin-bottom: 26px;
  padding: 15px;
  font-size: 14px;
}
#reply-modal section button{
  height: 46px;
  padding: 0;
}

#reply-modal section input:focus{
  border-color:#28CA97;
}
#reply-modal section label[for="check"]{
  margin-bottom: 26px;
  font-size: 14px;
  color: #999;
  display: block;
}
#reply-modal section footer{
  overflow: hidden;
}
#reply-modal section button{
  background: #28CA97;
  color: white;
  margin: 0;
  border: 0;
  cursor: pointer;
  width: 50%;
  float: left;
}
#reply-modal section button:hover{
  opacity: 0.8;
}
#reply-modal section button:nth-child(1){
  border-radius: 3px 0 0 3px;
  background: #aaa;
}
#reply-modal section button:nth-child(2){
  border-radius: 0 3px 3px 0;
}

#reply-modal .icon-close{
  background: #FFF;
  margin-bottom: 10px;
  position: absolute;
  right: -8px;
  top: -8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 0;
  color: #a9a9a9;
  cursor: pointer;
}
#reply-modal .icon-close:hover, #reply-modal .icon-close:focus{
  color: black;
}
#reply-modal.hasScroll .icon-close{
  display: none;
}

/* ---------Spinner--------------------------------------*/
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #666;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.spinner-text {
	display: block;
	text-align: center;
	font-size:16px;
	text-transform:uppercase;
	font-weight:bold;
	color:#666;
	margin-top: 0.6rem;
	margin-bottom: 4rem;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/*---------Algolia Autocomplete--------------------------------------*/
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700';
.aa-input-container {
  display: inline-block;
  position: relative;
}
.aa-input-search {
  width: 350px;
  padding: 8px 28px 8px 10px;
  border: 2px solid #e4e4e4;
  border-radius: 4px;
  -webkit-transition: .2s;
  transition: .2s;
  font-family: "Montserrat", sans-serif;
  box-shadow: 4px 4px 0 rgba(241, 241, 241, 0.35);
  font-size: 13px;
  box-sizing: border-box;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.algolia-ad {
  text-align: right;
  width: 350px;
  margin-bottom: 2rem;
}

@media (max-width:600px) {
  .aa-input-search {
    width: 320px;
  }
  .algolia-ad {
    width: 320px;
  }
}

.aa-input-search::-webkit-search-decoration, .aa-input-search::-webkit-search-cancel-button, .aa-input-search::-webkit-search-results-button, .aa-input-search::-webkit-search-results-decoration {
  display: none;
}
.aa-input-search:focus {
  outline: 0;
  border-color: #3a96cf;
  box-shadow: 4px 4px 0 rgba(58, 150, 207, 0.1);
}
.aa-input-icon {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: #e4e4e4;
}
.aa-hint {
  color: #e4e4e4;
}
.aa-dropdown-menu {
  background-color: #fff;
  border: 2px solid rgba(228, 228, 228, 0.6);
  border-top-width: 1px;
  font-family: "Montserrat", sans-serif;
  width: 350px;
  margin-top: 5px;
  box-shadow: 4px 4px 0 rgba(241, 241, 241, 0.35);
  font-size: 12px;
  border-radius: 4px;
  box-sizing: border-box;
}
.aa-suggestion {
  padding: 12px;
  border-top: 1px solid rgba(228, 228, 228, 0.6);
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.aa-suggestion:hover, .aa-suggestion.aa-cursor {
  background-color: rgba(241, 241, 241, 0.35);
}
.aa-suggestion > span:first-child {
  color: #333;
}
.aa-suggestion > span:last-child {
  /*text-transform: uppercase;*/
  color: #000;
}
.aa-suggestion > span:first-child em, .aa-suggestion > span:last-child em {
  font-weight: 700;
  font-style: normal;
  background-color: rgba(58, 150, 207, 0.1);
  padding: 2px 0 2px 2px;
}

#home {
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 1.2em;
}

#home-wrapper {
  text-align: center;
  padding-top: 20px;
}

#home-wrapper img {
  width: 200px;
}

a[target="_blank"].external:after {
  content: ' \f1d6 ';
  font-family: 'Ionicons';
  font-size: 20px;
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: .5;
}
.hr-text:before {
  content: '';
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;
  font-weight: bold;
  padding: 0 1em;
  line-height: 1.5em;
  background-color: #fff;
}

.note {
  padding: 20px!important;
  border-left: 5px #ccc solid;
  background: #eee;
  text-align: justify;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.note p {
  margin: 0!important;
}

span.source-cite {
  display: block;
  font-style: italic;
  text-decoration: underline dotted;
  text-align: right;
  font-weight: 500;
  font-size: 12px;
}

/* ---------------Style The Dropdown Button--------------------- */
.dropbtn {
  border: none;
  font-size: 14px;
  padding: 16px 55px 16px 25px;
  color: #fff;
  cursor: pointer;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s;
  position: relative;
  background-color: #333;
  z-index: 20;
  letter-spacing: 2px;
  overflow: hidden;
  margin: 0;
}

.dropbtn:before {
  position: absolute;
  content: '\f3d0';
  font-family: 'Ionicons';
  top: 12px;
  right: 16px;
  font-size: 24px;
}

.dropbtn:hover:before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.dropbtn:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  transition: all .3s;
}

.dropbtn:hover:after {
  width: 100%;
  height: 100%;
  /*right: -5px;
  top: -5px;
  -ms-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);*/
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  text-align: right;
  background-color: #ddd;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  opacity: 0.9;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #000;
  font-weight: 400;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  border: none;
  color: #FFF !important;
  background-color: #333;
  letter-spacing: 2px;
}

.token.comment:before, .token.comment:after {
  display: none;
}

.blogs.inline-menu li {
  font-size: 14px;
}