/* Dashbord Section ONE */
.one-summery {
  font-size: 16px !important;
  font: inherit;
  vertical-align: baseline;
  color: #1b1919e7;
}
.one-icon {
  color: #25a2c3;
  text-decoration: none;
  font-size: 40px;
  padding-left: 10px;
  font-weight: bold;
  vertical-align: middle;
}
.one-icon-text {
  color: #25a2c3;
  text-decoration: none;
  font-size: 20px;
  padding-left: 10px;
  font-weight: bold;
}

/* Autocomplete Search and list */
.search-input {
  background-image: url("/css/searchicon.png");
  background-position: 10px 12px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 5px;
}

ul.search-list li {
  padding-left: 0em;
}

.search-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.search-list li a {
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: block;
}

.search-list li a:hover:not(.header) {
  background-color: #eee;
}

/** Move to top floating button **/
#button {
  display: inline-block;
  background-color: #f6755e;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}
#button:after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/** Footer Menu list **/
ul.icons li {
  padding: 0 2em !important;
}

ul.footer-menu {
  cursor: default;
  list-style: none;
  padding-left: 0;
}
.footer-menu li:first-child {
  border-left: none;
}
ul.footer-menu li {
  display: inline-block;
  padding: 0 10px;
  border-left: solid 0.5px whitesmoke;
}

ul.footer-menu li:last-child {
  padding-right: 0;
}

@media screen and (max-width: 980px) {
  ul.footer-menu li {
    display: inline-block;
    padding: 0 10px;
    border-left: none;
  }
  ul.footer-social li {
    padding: 0 1.5em !important;
    display: inline-block !important;
  }
}

/* Social account login */

/* .socaial-container {
	position: relative;
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px 0 30px 0;
  } 
   */
/* style inputs and link buttons */
input,
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none; /* remove underline from anchors */
}

input:hover,
.btn:hover {
  opacity: 1;
}

/* add appropriate colors to fb, twitter and google buttons */
.fb {
  background-color: #3b5998;
  color: white;
}

.twitter {
  background-color: #55acee;
  color: white;
}

.google {
  background-color: #dd4b39;
  color: white;
}
.linkedin {
  background-color: #0a66c2;
  color: white;
}
.instagram {
  background-color: #262626;
  color: white;
}
/* style the submit button */
/* input[type=submit] {
	background-color: #4CAF50;
	color: white;
	cursor: pointer;
  }
  
  input[type=submit]:hover {
	background-color: #45a049;
  } */

/* Two-column layout */
.col {
  float: left;
  width: 50%;
  margin: auto;
  padding: 0 50px;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* vertical line */
.vl {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  border: 1px solid #ddd;
  height: 175px;
}

/* text inside the vertical line */
.vl-innertext {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 10px;
}

/* hide some text on medium and large screens */
.hide-md-lg {
  display: none;
}

/* bottom container */
.bottom-container {
  text-align: center;
  background-color: #666;
  border-radius: 0px 0px 4px 4px;
}

/* Responsive layout - when the screen is less than 650px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 650px) {
  .col {
    width: 100%;
    margin-top: 0;
  }
  /* hide the vertical line */
  .vl {
    display: none;
  }
  /* show the hidden text on small screens */
  .hide-md-lg {
    display: block;
    text-align: center;
  }
}

/* Social account end */

/*  Pagination start*/

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/*  Pagination End  */

/* text justify */
.p-justify {
  text-align: justify;
  text-justify: inter-word;
}
.pointer {
  cursor: pointer;
  text-decoration: none;
  font-size: large;
  font-weight: bold;
}
/* flash animation */
.element {
  width: 100%;
  height: 100%;
  animation: pulse 5s infinite;
}

@keyframes pulse {
  0% {
    background-color: #001f3f;
  }
  100% {
    background-color: #ff4136;
  }
}
/* flash animation end */

/* Category Card color */
.category-card {
  cursor: pointer;
  text-decoration: none;
}
.category-card a {
  cursor: pointer;
  text-decoration: none;
}
.card-water {
  background-color: #007bff;
  opacity: 0.8;
  transition: 0.3s;
}
.card-wood {
  background-color: rgb(114, 55, 55);
  opacity: 0.8;
  transition: 0.3s;
}
.card-fire {
  background-color: #e83e8c;
  opacity: 0.8;
  transition: 0.3s;
}
.card-metal {
  background-color: #5f4f55;
  opacity: 0.8;
  transition: 0.3s;
}
.card-earth {
  background-color: #28a745;
  opacity: 0.8;
  transition: 0.3s;
}
.card-none {
  background-color: #6610f2;
  opacity: 0.8;
  transition: 0.3s;
}
.category-card {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  color: white;
}
.card-water:hover,
.card-wood:hover,
.card-fire:hover,
.card-metal:hover,
.card-earth:hover,
.card-none:hover {
  opacity: 1;
}

.card-header {
  color: white;
  font-weight: bold;
  font-size: 16px;
  height: 45px;
}
.card-body {
  color: white;
  font-weight: bold;
  margin: auto;
}
.card-footer {
  color: white;
  font-weight: bold;
}
.card-row {
  padding-bottom: 10px;
}
#search-lists {
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}
#card-container:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#card-container {
  /* background-color: pink; */
  display: flex; /* establish flex container */
  flex-direction: row; /* default value; can be omitted */
  flex-wrap: nowrap; /* default value; can be omitted */
  justify-content: space-between; /* switched from default (flex-start, see below) */
  /* background-color: lightyellow; */
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;

  border: 2.9px solid rgb(216, 214, 214);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 1%;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#card-container .left {
  width: 35%;
  height: 100%;
  margin: auto;
  padding: 5px;
}
.left img {
  width: 90%;
  height: 90%;
}
#card-container .right {
  width: 80%;
  /* height: 100%; */
}
#card-container .five-metail {
  width: 80%;
  height: 80%;
  margin: 5px;
}
#card-container .card-right-img {
  width: 20%;
  height: 20%;
  margin: auto;
}
@media screen and (max-width: 980px) {
  .left img {
    height: 60%;
    margin: auto;
  }
  #card-container .left {
    width: 35%;
    height: 100%;
    margin: auto;
    padding: 5px;
  }
  .card-row {
    padding-left: 0px;
  }
}
/* Category card end */

/* Logo */
.logo-text {
  color: white;
  font-size: 25px;
  font-weight: bold;
  line-height: 4em;
}

/* search icon placeholder */
.search-input-icons i {
  position: absolute;
}
.search-input-icons {
  width: 100%;
  margin-bottom: 10px;
}
.search-icon {
  font-size: 20px;
  padding: 10px;
  padding-top: 17px;
  min-width: 40px;
  color: #949494;
}
.search-input-field {
  width: 100%;
  padding-left: 40px !important;
  font-size: 16px;
  font-weight: bold;
}
/* search icon end */

/* Meridian Help text */
#help-container {
  display: flex; /* establish flex container */
  flex-direction: row; /* default value; can be omitted */
  flex-wrap: nowrap; /* default value; can be omitted */
  justify-content: space-between; /* switched from default (flex-start, see below) */
}

#help-container > div:nth-of-type(2) {
  align-items: left;
  padding-top: 5px;
}
/* #help-container > div:nth-of-type(3) {
	width: 20%;
  } */

#help-container > div {
  width: 100%;
  align-items: center;
  /* border: 2px dashed red; */
}

#helpIcon:hover {
  color: #f6755e;
}

/* Meridian detail view */

.small_image {
  display: block;
  width: 180px;
  height: 200px;
  border: 1px solid #ddd;
  margin: auto;
}
.small_image:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
  cursor: pointer;
}
.imageclass {
  float: left;
  margin: 0px 15px 15px 0px;
  width: 50px;
}
.iconimageclass {
  width: 50px;
  margin: 0;
}
.m-title {
  padding-top: 10px;
}

hr {
  border: none;
  height: 20px;
  width: 90%;
  height: 20px;
  margin-top: 0;
  border-bottom: 0.3px solid #e4e4e4;
  margin: -50px auto 10px;
}

/* Meridian detail view end */

/* Preview meridian images */
.box-big-image {
  width: 100%;
  height: 750px;
}

.overlay {
  z-index: 1;
  position: fixed;
  top: 2em;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  height: 90%;
  position: relative;
  transition: all 1s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #25a2c3;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  top: 0px;
  float: right;
  position: absolute;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #f6755e;
}
.popup .content {
  max-height: 90%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  .popup {
    width: 70%;
    height: 85%;
  }
  .box-big-image {
    width: 100%;
    height: 450px;
  }
  .popup .content {
    max-height: 70%;
    overflow: auto;
  }
  .card-body {
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .pagination > li > a,
  .pagination > li > span {
    padding: 0px 5px 0px 5px;
  }
}
@media screen and (max-width: 650px) {
  .card-body {
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .pagination > li > a,
  .pagination > li > span {
    padding: 0px 5px 0px 5px;
  }
  .pagination {
    width: 300px;
  }
}
/*favourite list*/

.fav-image {
  padding: 2px;
  width: 60px;
  height: 60px;
}
#card-container .favourite-right {
  width: "60%";
}
.fav-delete {
  text-decoration: none;
}
/* Preview meridian images */
/*Meridian list */
.meridian-left img {
  width: 100%;
  height: 90%;
  margin-top: 5px;
  border: 1px solid rgb(216, 214, 214);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0px 0px 3px 0px #a5a0a0;
}

.meridian-container {
  border-radius: 9px !important;
}

#card-container .meridian-left {
  width: 20%;
  height: 100px;
  margin: auto;
  /* padding: 5px; */
}

#card-container .meridian-right {
  width: 20%;
  margin: auto;
  padding: 0;
  text-align: center;
}
#card-container .m-right {
  width: 50%;
}
#card-container .p-right {
  width: 70%;
}
#card-container .meridian-right {
  width: 20%;
  margin: auto;
  padding: 0;
  text-align: center;
}
#card-container .m-right {
  width: 50%;
}
#card-container .p-right {
  width: 70%;
}
.m-points {
  font-size: 12px;
  margin: 0 0 -2em 0;
}

.point-nos {
  width: 30%;
  height: 30px;
  text-align: center;
  margin-left: 40%;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #f6755e;
}
.small-msg {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 2px;
}

.meridEngName {
  /* margin: 0 0 0em 0 !important;  */
  color: #f6755e;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  #card-container .meridian-left {
    height: 60px;
  }
}

/* Meridian end */

/* Toast Message */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #54976e;
  color: rgb(248, 245, 245);
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 100px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbarError {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #d32323;
  color: rgb(248, 245, 245);
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 100px;
  font-size: 17px;
}

#snackbarError.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 100px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 100px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 100px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 100px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
/* Toast Message end */

/* subcategory item */
.subcat-item {
  text-decoration: none;
  color: none;
}
/* subcat item end */

/* Disable Print */
@media print {
  html,
  body {
    display: none;
  }
}
/* Disable Print */

/* custom ads display */
.adsbg {
  background: #f4b33a;
  color: #fcdcd6;
}


.mySlides {display: none}
img {vertical-align: middle; }

.mySlides img { height: 500px;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  margin: 4px 0 0 4px;
  box-shadow: 0 0 0 4px #fff;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.2);
  text-decoration: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  background-color: rgba(0,0,0,0.2);
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 50 10px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #25a2c3;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/* custom ads display end */

/*** Page menu ****/

.top-menu-nav {
  overflow: hidden;
  background-color: #25a2c3;
  width: 100%;
  margin: auto;
  height: 50px;
  text-align: center;
}
.top-menu-nav-1 {
  margin: auto;
  margin-top: 11px;
  width: 100%;
}

.top-menu-nav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.top-menu-nav a:hover {
  background-color: #ddd;
  color: black;
}

.top-menu-nav a.active {
  background-color: #04AA6D;
  color: white;
}

@media (max-width: 767px) {
  .top-menu-nav {
    display: none;
  }
}