﻿.mybtn {
  padding: 0.6em 1.2em;
  text-align: center;
  text-decoration: none;
  /*    display: inline-block;*/
  border-radius: 3px;
  min-width: 120px;
  border: none;
  outline: none!important;
  font-size: 17px;
}
.mybtn:hover {
  text-decoration: none;
  cursor: pointer;
}
.color-btn-default:disabled {
  color: #f8f8f8;
  background-color: #767676 !important;
}
.color-btn-secondary:hover,
.default-link:hover {
  cursor: pointer;
  text-decoration: none;
}
/*.default-link{
    background-color:#FFF;
}*/
.mybtn-sm {
  padding: 0.5em 1em;
  text-align: center;
  display: inline-block;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  min-width: 120px;
  border: none;
  height: 2.1rem;
  margin-left: -5px;
  font-size: 0.85rem;
}
.mybtn-sm:hover {
  cursor: pointer;
}
.logout-mobile {
  border: none;
  background-color: transparent;
}
input[type=text],
input[type=password],
input[type=email] {
  width: 100%;
  height: 2.1rem;
  margin-right: 0;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
  padding-left: 0.5em;
}
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder {
  padding-left: 0.25em;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=text]:active,
input[type=password]:active,
input[type=email]:active {
  outline: none;
  border: 1px solid #5897fb;
}
input[type=search] {
  width: 100%;
  height: 40px;
  margin-right: 0;
  border: none;
  border-bottom: 1px solid #DCDCDC;
  padding-left: 0.25em;
}
input[type=search]::-webkit-input-placeholder {
  padding-left: 0.25em;
}
input[type=search]:focus,
input[type=search]:active {
  border-bottom: 1px solid #d87c17;
  outline: none;
}
textarea {
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  resize: none;
}
textarea::-webkit-input-placeholder {
  padding-left: 0.25em;
}
textarea:focus,
textarea:active {
  border: 1px solid #5897fb;
  /*outline: none;*/
}
.error {
  font-weight: 700;
  text-transform: uppercase;
  color: #9D2121;
}
.tooltipster-sidetip .tooltipster-box {
  border: none !important;
}
.tooltipster-sidetip .tooltipster-content {
  font-size: 0.8rem !important;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #565656 !important;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #565656 !important;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #565656 !important;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #565656 !important;
}
#global-message {
  position: fixed;
  bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  width: 18em;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  z-index: 99999999;
}
@media (min-width: 650px) {
  #global-message {
    left: 20px;
  }
}
@media (max-width: 650px) {
  #global-message {
    left: 0;
  }
}
#global-message.success {
  background-color: #00c598;
  color: #f8f8f8;
}
#global-message.failed {
  background-color: #9D2121;
  color: #f8f8f8;
}
#global-message.info {
  background-color: #fdf497;
  color: #181818;
}
#global-message.loading {
  background-color: #DCDCDC;
  color: #181818;
}