﻿.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}
.btn:focus {
    border-color: #ced4da;
    box-shadow: none;
}
button:focus {
    border-color: #ced4da;
    box-shadow: none;
}
select:focus{
    border-color: #ced4da;
    box-shadow: none;
}
.sec-profile{
    font-family: 'Poppins', sans-serif;
    padding: 15px;
}

.sec-profile .profile-img-wrapper{
    position: relative;
    border-radius: 50%;
}
.sec-profile .avatar-img-wrapper{
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    background-color: white;
}
.edit-img{
    position: absolute;
    padding: 8px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}
.edit-img:hover{
    background-color: rgba(255, 255, 255,0.8);
}
.profile-name{
    font-size: 18px;
    font-weight: bold;
}
.profile-email{
    font-size: 13px;
}

@media (min-width: 992px){
    .sec-profile .profile{
        display: flex;
    }
    .sec-profile .profile-img-wrapper{
        width: 120px;
        height: 120px;
    }
    .sec-profile .avatar-img-wrapper{
        width: 120px;
        height: 120px;
    }
    .sec-profile .profile-img-wrapper .avtar-img{
        max-width: 125px;
    }
    .edit-img, .input-file-wrap{
        bottom: 10px;
        right: 0;
    }
    .sec-profile{
        background: #4CA1AF;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to left, #C4E0E5, #4CA1AF);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to left, #C4E0E5, #4CA1AF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }
    .sec-profile .profile-info-wrapper{
        padding: 20px;
        margin-top: 5px;
    }
}


@media (max-width: 991.58px){
    .sec-profile .profile{
        text-align: center;
        position: relative;
    }
    .sec-profile .profile-img-wrapper{
        margin: 0 auto;
        width: 180px;
        height: 180px;
    }
    .sec-profile .avatar-img-wrapper{
        width: 180px;
        height: 180px;
    }
    .sec-profile .profile-img-wrapper .avtar-img{
        max-width: 185px;
    }
    .edit-img, .input-file-wrap{
        bottom: 15px;
        right: 10px;
    }
    .sec-profile{
        background: #4CA1AF;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to top, #C4E0E5, #4CA1AF);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to top, #C4E0E5, #4CA1AF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }
    .sec-profile .profile-info-wrapper{
        padding: 15px;
    }
}

.sec-detail{
    background-color: #F2F3F7;
    font-family: 'Poppins', sans-serif;
}
.sec-detail .detail-wrapper{
    position: relative;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.sec-detail .left{
    width: 25%;
    padding: 5px;
}
.sec-detail .left-detail-wrapper{
    padding: 15px;
}
.sec-detail .right{
    padding: 5px;
}
.sec-detail .detail-group{
    padding-bottom: 10px;
}
.sec-detail .left-detail-title{
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 5px;
}
.sec-detail .list{
    cursor: pointer;
    font-size: 13px;
    /*margin-left: 10px;
    padding: 2px;*/
    background-color: rgba(237,27,36, 0.9);
    padding: 5px;
    color: white;
    border-radius: 4px;
    transition-duration: 0.4s;
}
.sec-detail .list:hover {
    background-color: rgba(237,27,36, 0.5);
    color: black;
}
.sec-detail .right-detail-wrapper h2{
    font-size: 14px;
    font-weight: 600;
}
.sec-detail .right-detail-wrapper p, .sec-detail label, .sec-detail .form-control, .btn, .custom-select{
    font-size: 13px;
}
.sec-detail .alert-danger{
    font-size: 12px;
    display: none;
}
.sec-detail .input-group-text{
    text-decoration: none;
    cursor: pointer;
    padding: 0 .75rem !important;
}

.sec-detail .icon-wrapper{
    display: flex;
}
.sec-detail .icon{
    position: relative;
    padding: 8px;
    width: 25%;
    height: 40px;
    border: 1px solid #eee;
}
.sec-detail .icon svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sec-detail .active svg g g{
    fill: #007bff;
}
.sec-detail .icon span{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 33px;
    font-size: 10px;
} 

@media (min-width: 992px){
    .sec-detail .mobile-tab{
        display: none;
    }
    .sec-detail .left{
        display: block;
    }
    .sec-detail .detail-wrapper{
        display: flex;
    }
    .sec-detail .right{
        width: 75%;
    }
    .sec-detail{
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 991.58px){
    .sec-detail .mobile-tab{
        display: block;
        margin-bottom: 1.8rem;
    }
    .sec-detail .left{
        display: none;
    }
    .sec-detail .right .tab-content .container{
        padding-right: 0;
        padding-left: 0;
    }
    .sec-detail .right{
        width: 100%;
    }
    .sec-detail{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .dataTables_wrapper .col-sm-12{
        overflow: scroll !important;
    }
}

.sec-profile .file-upload{
    height: 64px;
    width: 32px;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: 1px;
    opacity: 0;
    cursor: pointer;
}

.input-file-wrap{
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
}

#loading{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: white;
}
#loading img{
    max-width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.img-load{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80px;
}
table td{
    font-size: 12px !important;
}
table .view{
    cursor: pointer;
}
.rating span{
    font-size: 18px;
}
.rating .active{
    color: #ffa534 !important;
}


.fieldset input[type="radio"] {
  box-shadow: none;
}
.fieldset button {
  min-width: 48px;
  min-height: 48px;
}
.fieldset button:hover {
  border: 1px solid #ccc;
  background-color: #fff;
}
.fieldset button#review-add-btn, 
.fieldset button.close-btn, 
.fieldset button#submit-review-btn {
  min-height: 40px;
}
button#submit-review-btn {
  font-weight: bold;
  cursor: pointer;
  padding: 0 16px;
}
.fieldset .right {
  align-self: flex-end;
}
.fieldset #review-form-container {
  width: 100%;
  /* background-color: #eee; */
  padding: 0 20px 26px;
  color: #333;
  overflow-y: auto;
}
.fieldset #review-form-container h2 {
  margin: 0 0 0 6px;
}
.fieldset #review-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.fieldset review-form label, #review-form input {
  display: block;
  /* width: 100%; */
}
.fieldset #review-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.fieldset #review-form .rate label, .fieldset #review-form .rate input,
.fieldset #review-form .rate1 label, .fieldset #review-form .rate1 input {
  display: inline-block;
}
/* Modified from: https://codepen.io/tammykimkim/pen/yegZRw */
.fieldset .rate {
        float: left;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
}
.fieldset #review-form .rate > label {
  margin-bottom: 0;
  margin-top: -5px;
  height: 30px;
}
.fieldset .rate:not(:checked) > input {
  /* position: absolute; */
  top: -9999px;
  margin-left: 0;
  width: 20px;
  padding-right: 14px;
  z-index: -10;
}
.fieldset .rate:not(:checked) > label {
  float:right;
  width:1em;
  overflow:hidden;
  white-space:nowrap;
  cursor:pointer;
  font-size:30px;
  color:#ccc;
}
/* #star1:focus{

} */
.fieldset .rate2 {
  float: none;
}
.fieldset .rate:not(:checked) > label::before {
  content: '★ ';
  position: relative;
  top: -10px;
  left: 2px;
}
.fieldset .rate > input:checked ~ label {
  color: #ffc700;
}
.fieldset #submit-review {
  align-self: flex-end;
}

table thead tr th{
    font-size: 14px !important;
}
.tab-content{
    overflow-x: auto;
}




















