:root {
    --label-color: #8A8A8A;
    --black-color: black;
}

.profile-info-main {
    margin-top: 7rem;
    display: flex;
    justify-content: space-between;
}

a {
    color: inherit !important;
}

a:hover {
    text-decoration: none;
}

.profile-label-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form */
.upload-box {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #631c1f;
    margin-bottom: 20px;
    cursor: pointer;
    background: #F9F9F9;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1rem;
    letter-spacing: 0.16px;
}

.edit-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #601d1d;
    /* deep maroon */
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    float: right;
}


.nav-tabs .nav-link.active {
    background-color: #5c0a0a;
    color: #fff;
}

.nav-tabs .nav-link {
    color: #000;
}

.form-section {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.label-style {
    color: var(--label-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.14px;
}

.form-control {
    color: var(--black-color) !important;
    font-weight: 500;
    line-height: normal;
}

.tab-border {
    border: 1px solid rgba(204, 204, 204, 0.5);
    padding: 6px;
    border-radius: 10px;
}

.bg-maroon {
    background-color: rgba(93, 24, 26, 1);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border-none {
    border: none;
}

button:focus {
    outline: 5px auto white;
}

.profile_photo {
    display: flex;
}

.profile-img {
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
}

.profile-photo-box {padding: 2rem 7rem;}

.iti { width: 100%; }

@media (max-width: 991px) {
    .tab-border button {
        width: 31%;
        padding: 10px !important;
    }
    .profile-info-main {
        display: block;
    }

    .profile-info-main a {
        display: flex;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 599px;
    }

    .profile_photo {
        display: block;
    }
}