/* Employee Details page */

.choose-file label {
    padding: 10px;
    background: #20263a;
    display: table;
    color: #fff;
    border-radius: .35rem;
}

.choose-file input[type="file"] {
    display: none;
}

.field-icon {
    float: right;
    margin-right: 6px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}


/* Top Modal */

.modal .modal-title {
    color: #355BCC;
    font-weight: bold;
}


/* / Employee Details page / */

.choose-file label {
    padding: 10px;
    background: #20263a;
    display: table;
    color: #fff;
    border-radius: .35rem;
}

.choose-file input[type="file"] {
    display: none;
}

.field-icon {
    float: right;
    margin-right: 6px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}

.col-xs-5 {
    width: 41.66666667%;
}

.control-label,
.form-label {
    color: #4e73df;
    font-weight: bold;
}


/* / Cancel Button / */

.card-close-btn {
    width: 20px;
    height: 20px;
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 100rem;
    color: white;
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    background: #466BD9;
}

.card-close-btn::before {
    content: '×';
    transform: translateY(-.1rem);
}

.card-close-btn:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-.2px);
}

.toggle-view-password {
    margin-top: 5px;
    margin-left: 5px;
}

.profile-box {
    margin: 50px auto;
    border: 2px solid #4268D6;
    border-radius: 1rem;
    padding: 10px;
}


/* / Profile update CSS / */

.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-pic input {
    display: none;
}

.profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 250px;
    height: 250px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    z-index: 0;
}

.profile-pic .-label {
    cursor: pointer;
    height: 250px;
    width: 250px;
    margin-bottom: 0;
}

.profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10000;
    color: rgb(250, 250, 250);
    transition: background-color 0.2s ease-in-out;
    border-radius: 50%;
}

.profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}

hr.card-hline {
    border: 0;
    clear: both;
    display: block;
    width: 100%;
    background-color: #000;
    height: 1px;
}

.suburbsBlock {
    border: 1px solid #375DCE !important;
    padding: 5px 10px !important;
    margin: 5px 10px;
    border-radius: 1rem;
    color: #c81c1c;
    text-align: center;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(58 59 69 / 15%) !important;
    background: #dbe2fb;
}


/* ************************ Blog Create page *******************************
************************************************************************* */

.picture {
    width: 765px;
    height: 400px;
    background-color: #999999;
    border: 4px solid #CCCCCC;
    color: #FFFFFF;
    /* border-radius: 50%; */
    margin: 5px 56px;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.picture:hover {
    border-color: #2ca8ff;
}

.picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.picture-src {
    width: 100%;
    height: 100%;
}


.circle_green {

    padding: 5px 6px;
    background: #66af66;
    height: 2px;
    border-radius: 50%;
    /* margin-left: auto;
    margin-right: auto; */
    width: 2px;
    display: inline-block;
    float: right;
}

.circle_red {
    padding: 5px 6px;
    background:#c14242;
    height: 2px;
    border-radius: 50%;
    /* margin-left: auto;
    margin-right: auto; */
    display: inline-block;
    width: 2px;
    float: right;
}



hr.hline {
    border: 0;
    clear: both;
    display: block;
    width: 100%;
    background-color: #e1d7d7;
    height: 1px;
}


  .card.button:hover {
      box-shadow: 0 0 15px 0 rgb(43 53 145 / 30%);
  }
  
  .card.button {
      box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
  }
  
  
    /* User Profile Picture */
  .profile{

    position: fixed;
    width: 95px;
    height: 150px;
    z-index: 10;
    text-align: center;
    left: 5px;
    bottom: 10px;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    background: #fff;
    border-radius: 10%;
    padding: 0px 11px;
    border:1px solid #000;

}
.profile .profile_detail{
    position: absolute;
    z-index: 11;
    left: 6px;
    bottom: 105px;
}
.profile .img-profile{
    position: relative;
    width: 5rem;
    height:5rem;
    border-radius:50%;
    border:1px solid #000;
    animation-name: colorChange;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;
}


@keyframes colorChange {
        0% {
        background: #fff;
        }

        100% {
        background: #0b2f99;
        }
}

.profile .img-profile img{
    border: 1px solid #000;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
