


.btn_ {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 0 2em;
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 600px) {
  .btn_ {
    margin: 0 1em 2em;
  }
}
.btn_:hover {
  text-decoration: none;
}


.btn-2 {
  letter-spacing: 0;
}

.btn-2:hover,
.btn-2:active {
  
}

.btn-2:after,
.btn-2:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
}

.btn-2:hover:after,
.btn-2:hover:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-color: #fff;
  transition: width 350ms ease-in-out;
  width: 70%;
}

.btn-2:hover:before {
  bottom: auto;
  top: 0;
  width: 70%;
}
 


 



/* Animations */

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}


/* Button */

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #3160B6;
  cursor: pointer;
  transition: all 0.15s ease;
}
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background:  #00768E;
 }

.buttonBlue:hover { background: #00667A; }


/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #00768E;
  color:#fff;
}


/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}









.dashboard-sh-container{width:100%;float:right;min-height:20px;}
.dashboard-shortcut{overflow:hidden;position:relative;float:right;width:15%;float:right;margin:1% 1% 0 0;color:#00396E;transition:all 0.2s;
background-color:#fff;border:1px solid #e7e7e7;border-top:2px solid #e7e7e7;min-height:70px;}
.dashboard-shortcut:hover{border-top:2px solid #17A2B8;transition:all 0.2s;}
.dashboard-shortcut i{padding:10px 10px;font-size:45px;transition:all 0.5s;position:absolute;right:33%;top:0}
.dashboard-shortcut span{width:100%;text-align:right;position:absolute;font-size:23px;top:23%;right:150%;transition:all 0.5s;}
.dashboard-shortcut:hover i{color:#17A2B8;font-size:40px !important;transition:all 0.2s;right:15px;top:2% }
.dashboard-shortcut:hover span{color:#17A2B8;right:45%;transition:all 0.5s;}












.flex {
  transition: 0.5s;
  display: inline-flex;
  margin:0;
  
}

.bttn {transition: 0.5s;
	font-family:inherit;
  width: 70px !important;
  height: 70px;
  line-height: 70px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  z-index:2;
}
.bttn:hover{color:#007086;text-decoration:none}
.bttn:after {
  transition: 0.3s all ease;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 3px;
  border: 3px solid #007086;
}
.bttn:before {
  content: '';
  position: absolute;
  border-radius: 3px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #00708624 !important;
  z-index: 2;
}
.bttn:hover:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bttn:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.bttn:active:before {
  background-color: #007086 !important;
}
.bttn:active:after {
  border-color: #007086;
}



.logout-btn a.bttn:before{background: #ca080824 !important;}
.logout-btn a.bttn:after{border: 3px solid #d00d06c2;}
.logout-btn a.bttn:hover{color:red}

.box {
  margin: 1rem;
  width: 18.75rem;
}
.box img {
  width: 100%;
}

.btn.color-1 {
  background-color: #426FC5;
}
.btn.color-2 {
  background-color: #00897b;
}
.btn.color-3 {
  background-color: #f6774f;
}
.btn.color-4 {
  background-color: #e94043;
}

.btn-border.color-1 {
  background-color: transparent;
  border: 2px solid #426FC5;
  color: #426FC5;
}
.btn-border.color-2 {
  background-color: transparent;
  border: 2px solid #00897b;
  color: #00897b;
}
.btn-border.color-3 {
  background-color: transparent;
  border: 2px solid #f6774f;
  color: #f6774f;
}
.btn-border.color-4 {
  background-color: transparent;
  border: 2px solid #e94043;
  color: #e94043;
}

.btn-round {
  border-radius: 10em;
}

.material-design {
  position: relative;
}
.material-design canvas {
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
}




.play-btn {
  width: 100px;transition: 0.5s;
  height: 100px;
  background: radial-gradient( #005A6C 60%, rgba(255, 255, 255, 1) 62%);
  border-radius: 50%;
  position: relative;
  display: block;
  margin: 20px auto;
  box-shadow: 0px 0px 25px 3px #005A6C;
}

/* triangle */


/* pulse wave */
.play-btn:before {box-sizing: unset;
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -30%;
  left: -30%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}





.share{
  display:block;
  transition: 0.5s;
  position:absolute;
  top:300px;
  left:50%;
  z-index:999;
  text-align:center;
  overflow:hidden;
 
  color:#fff;
   -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
}

.share:hover{
  cursor:pointer;
}
.one span, .two span, .three span,.four span{padding:10px;display:none;float:left;line-height:34px;transition: 0.5s;}
.one, .two, .three,.four{transition: 0.5s;
  position:absolute;
  min-width:62px;
  height:62px;
  color:#fff;
  border-radius:50px;
  text-align:center;
  line-height:78px;
  padding:5px 10px;
  font-size:1.5em;
   top:300px;
  left:50%;
   -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
  -webkit-box-shadow: 0px 3px 9px rgba(0,0,0,.2);
box-shadow: 0px 3px 9px rgba(0,0,0,.2);
  -webkit-transition:transform  .3s ease-in-out;
  transition:transform .3s ease-in-out;
}

.one:hover, 
.two:hover,
.three:hover,
.four:hover{
  cursor:pointer;
}

.one i, .two i, .three i,.four i{
  display:none;float:left;
}


.one{
  background:#00768E;
}

.two{
  background:#00768E;
}

.three{
  background:#00768E;
}


.four{
  background:#00768E;
}
