﻿
@media (min-width: 992px) {
    .profileFormRightOnly{
        border-left-width:0px!important;
        border-bottom-width:0px!important;
        border-top-width:0px!important;
        border-right-width: 1px!important;
        border-right-style: outset;
        border-right-color:rgba(0,0,0,.13);
    }
}

@media (max-width: 992px) {
    .profileFormLeftOnly {
        border-left-width: 0px !important;
        border-bottom-width: 0px !important;
        border-right-width: 0px !important;
        border-top-width: 1px !important;
        border-top-style: outset;
        border-top-color: rgba(0,0,0,.13);
    }
}

.btn-custom-warning{
    pointer-events:none;
    border-radius:45%;
    background-color:rgba(211,211,211,0.1);
    padding:16px;
}

.profileForm{
    margin:5px 0px 5px 0px;
    border:1px solid transparent;
    border-radius:5px;
    box-shadow:0 2px 4px 0 rgba(0,0,0,.13);
}

#active .list-group .list-group-item{
    min-height:84px;
}

#expired .list-group .list-group-item{
    min-height:103px;
}

#removed .list-group .list-group-item{
    min-height:84px;
}

.has-feedback .form-control{
    padding:6px 12px;
}

.has-success .form-control{
    border-top-width:0px;
    border-right-width:0px;
    border-left-width:0px;
    border-radius:0px;
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);
}

.has-success .form-control:focus{
    border-top-width:0px;
    border-right-width:0px;
    border-left-width:0px;
    border-radius:0px;
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);
}

.has-error .form-control{
    border-top-width:0px;
    border-right-width:0px;
    border-left-width:0px;
    border-radius:0px;
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);
}

.has-error .form-control:focus{
    border-top-width:0px;
    border-right-width:0px;
    border-left-width:0px;
    border-radius:0px;
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);
}

.form-control{
    border-top-width:0px;
    border-right-width:0px;
    border-left-width:0px;
    border-radius:0px;
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);
}

.form-control:focus{
    border-top-width:0px;
    border-right-width:0px;
    border-left-width:0px;
    border-radius:0px;
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);
}

.recaptcha-error{
    box-shadow: inset 0 0px 2px #a94442;
    border-radius: 5px;
    padding: 6px;
}

.g-recaptcha div{
    width:100%!important;
}

.progress-bar{
    color:#333;
}

.modal-footer-no-border{
    border-top-width:0px!important;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}