﻿/* master page */
/*#site-header .ui.text.menu .item {
    height: 35px;
    margin: 0 25px;
}
#site-header .ui.secondary.menu .dropdown.item:hover, 
             .ui.secondary.menu .link.item:hover, 
             .ui.secondary.menu a.item:hover {
    background: #ef6817;
    border-radius: 5px;
    color: #ffffff;
}
.ui.text.menu .active.item, .ui.text.menu .active1.item {
    background: #ef6817;
    border-radius: 5px;
    color: #ffffff;
}
.ui.text.menu .active.item > a {
    color: #fff; opacity:unset;
}*/


/****** navigation menu ******/
#site-header a {
    color:black; 
}

/* hover and selected currently shares the same style */
#site-header .item:hover,
#site-header .selected.item {
    background: rgba(239,104,23,.9) !important;
    color: rgba(255,255,255,1) !important;
}
/* hover and selected currently shares the same style */
#site-header .item:hover,
#site-header .item:hover .text,
#site-header .selected.item,
#site-header .selected.item .text {    /* if we don't specified here, it'll get overwritten by the ".item *" rule */
	color: rgba(255,255,255,1) !important;
	font-weight: 400 !important;
}
/****** navigation menu ******/
/* master page */


/************ loading spinner ************/
/* https://raju28.github.io/loaders/ */
@-webkit-keyframes load-spinner-clockwise {
    to { transform: rotate(360deg) translateZ(0); }
}
@-moz-keyframes load-spinner-clockwise {
    to { transform: rotate(360deg) translateZ(0); }
}
@-o-keyframes load-spinner-clockwise {
    to { transform: rotate(360deg) translateZ(0); }
}
@keyframes load-spinner-clockwise {
    to { transform: rotate(360deg) translateZ(0); }
}
.loading-spinner {
    -webkit-animation: load-spinner-clockwise 1.5s linear infinite;
    -moz-animation: load-spinner-clockwise 1.5s linear infinite;
    -o-animation: load-spinner-clockwise 1.5s linear infinite;
    animation: load-spinner-clockwise 1.5s linear infinite;
    border-width: 3px; /* determines the thickness of the spinner */
    border-style: solid;
    border-radius: 100%;
    border-color: rgb(118, 118, 118) rgb(118, 118, 118) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
}

/* appears to be the same as above, but is used by other library, so kept as is */
/* clockwise => CW */
@-webkit-keyframes CW-rotation {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(359deg); }
}
@-moz-keyframes CW-rotation {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(359deg);}
}
@-o-keyframes CW-rotation {
    from { -o-transform: rotate(0deg); }
    to { -o-transform: rotate(359deg); }
}
@keyframes CW-rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}
.loading-spinner2 {
    -webkit-animation: CW-rotation .6s infinite linear;
    -moz-animation: CW-rotation .6s infinite linear;
    -o-animation: CW-rotation .6s infinite linear;
    animation: CW-rotation .6s infinite linear;
    border-width: 6px; /* determines the thickness of the spinner */
    border-style: solid;
    border-radius: 100%;
    border-color: rgba(0,174,239,.8) rgba(0,174,239,.15) rgba(0,174,239,.15);
}
/************ loading spinner ************/


/*SCROLL TO TOP ICON*/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: rgba(128, 112, 98, 0.8) url("/images/cd-top-arrow.svg") no-repeat center 50%;
  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;
  z-index: 99999;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 65px;
  }
}