.dont-display{
  display: none;
}


.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap !important;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.card-profile .card-header {
    height: 9rem;
    background-size: cover;
    background-position: center center
}

.card-profile-img {
    max-width: 8rem;
    margin-top: -6rem;
    margin-bottom: 1rem;
    border: 3px solid #868e96;
}


.card-company-logo .card-header {
    height: 10rem;
    background-size: cover;
    background-position: center center
}

.card-company-img {
    max-width: 9rem;
    margin-top: -6rem;
    margin-bottom: 1rem;
}

.c-dark-theme .form-control {
  border: 1px solid #484855 !important;
}

.c-dark-theme .select2-container--coreui .select2-selection {
    border: 1px solid #484855 !important;
}


.ppotts-logo-pulse {
  width: 40px;
  height: 40px;
  margin: auto;
  background-color: transparent;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 3.0s infinite ease-in-out;
  animation: sk-pulseScaleOut 3.0s infinite ease-in-out;
}

.loader {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity:1;
}


.loader.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.avatar-log {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    border-radius: 50%;
    display: inline-block;
    background: #ced4da no-repeat center/cover;
    position: relative;
    text-align: center;
    color: #868e96;
    font-weight: 600;
    vertical-align: bottom;
}

.avatar-log.avatar-md {
    width: 3rem;
    height: 3rem;
}


.support-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: none;
    padding: 4px;
    /*border: 3px solid #282b2f*/
}

.c-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 19999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.c-modal-content {
  background-color: #ebedef;
  margin: auto;
  padding: 20px;
  border: 1px solid #2d3035;
  width: 80%;
}

.c-dark-theme .c-modal-content {
  background-color: #181924;
  margin: auto;
  padding: 20px;
  border: 1px solid #181924;
  width: 80%;
}



/*  NEWS INDEX STYLING */
.col-md-4{
    padding-bottom:20px;
}
.item-box-blog {
  border: 1px solid #dadada;
  text-align: center;
  z-index: 4;
  padding: 20px;
}

.item-box-blog-image {
  position: relative;
}

.item-box-blog-image figure img {
  width: 100%;
  height: auto;
}

.item-box-blog-date {
  position: absolute;
  z-index: 5;
  padding: 4px 20px;
  top: -20px;
  right: 8px;
  background-color: #41cb52;
}

.item-box-blog-date span {
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1.2;
}

.item-box-blog-date span.mon {
  font-size: 18px;
}

.item-box-blog-date span.day {
  font-size: 16px;
}

.item-box-blog-body {
  padding: 10px;
}

.item-heading-blog a h5 {
  margin: 0;
  line-height: 1;
  text-decoration:none;
  transition: color 0.3s;
}

.item-box-blog-heading a {
    text-decoration: none;
}

.item-box-blog-data p {
  font-size: 13px;
}

.item-box-blog-data p i {
  font-size: 12px;
}

.item-box-blog-text {
  max-height: 100px;
  overflow: hidden;
}

/*  END NEWS INDEX STYLING */


/* BOK DETAILS BUTTON */
td.details-control {
    background: url('/static/icons/bok-plus30.png') no-repeat center center;
    cursor: pointer;
}
tr.shown td.details-control {
    background: url('/static/icons/bok-minus30.png') no-repeat center center;
}


/* ANIMATED BORDER */
.animated-border {
  --borderWidth: 5px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}

.animated-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}


@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* STATIC BORDER */
.static-border {
  --borderWidth: 5px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.static-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(80deg,  #321fdb, purple);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
}




/* HOME TILES */
.zoom60 {
   zoom: 60%;
   display: flex;
}

.zoom80 {
  zoom: 80%;
}

.zoom90 {
  zoom: 90%;
}

.ecol {
  height: 85px;
}

.card-image {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 95% 100px;
  width: 100%;
  height: 100px;
}

.equal-tile {
   zoom: 60%;
}

.equal-tile2 {
  zoom: 80%;
}

.c-dark-theme .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.c-dark-theme .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.custom-carousel-control-prev {
  left: 0;
}

.custom-carousel-control-next {
  right: 0;
}

.custom-carousel-control-prev-icon,
.custom-carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.cbtn_previous {
  padding: 8px 16px;
}

.cbtn_next {
  padding: 8px 16px;
}

.profile-image-wrapper {
    display: inline-block;
    background-size: 210px;
    /*margin: 30px;*/
    border-radius: 50%;
    width: 210px;
    height: 210px;
}

/*Profile Card 3*/
.profile-card-3 {
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  text-align: center;
  height:368px;
  border:none;
}
.profile-card-3 .background-block {
    float: left;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.profile-card-3 .background-block .background {
  width:100%;
  vertical-align: top;
  opacity: 0.9;
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
   -webkit-transform: scale(1.8);
  transform: scale(2.8);
}
.profile-card-3 .card-content {
  width: 100%;
  padding: 15px 25px;
  color:#232323;
  float:left;
  background:#efefef;
  height:50%;
  border-radius:0 0 5px 5px;
  position: relative;
  z-index: 9999;
}

.profile-card-3 .card-content::before {
  content: '';
  background: #efefef;
  width: 120%;
  height: 100%;
  left: 11px;
  bottom: 51px;
  position: absolute;
  z-index: -1;
  transform: rotate(-13deg);
}

.profile-card-3 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  left: 50%;
  max-width: 100px;
  opacity: 1;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 1);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index:99999;
}
.profile-card-3 h2 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size:25px;
}
.profile-card-3 h2 small {
  display: block;
  font-size: 15px;
  margin-top:10px;
}

.profile-card-3 i {
  display: inline-block;
  font-size: 16px;
  color: #232323;
  text-align: center;
  border: 1px solid #232323;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin:0 5px;
}
.profile-card-3 .icon-block{
  float:left;
  width:100%;
  margin-top:15px;
}
.profile-card-3 .icon-block a{
  text-decoration:none;
}

.profile-card-3 i:hover {
  background-color:#232323;
  color:#fff;
  text-decoration:none;
}
