.box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 50px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.box-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    z-index: 5;
    border-radius: 50%;
    background:#2b2b2b;
}

.box span {
    display: block;
    position: relative;
    top:50%;
    transform:translateY(-50%);
    font-size: 30px;
    font-family: sans-serif;
    font-weight: bold;
    color:#fff;
    z-index: 10;
}

.box:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    clip: rect(0 200px 100px 0);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background: #50c690;
}

.box:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    clip: rect(0 100px 200px 0);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    background: #50c690;

}
.form-control {
     display: block;
     width: 100%;
    padding: .375rem .75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control-cstm {
    display: inline-block;
    width: auto;
    padding: .375rem .75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.d_p{
    height: 10px
}
.d_p .a, .d_p .v {
    position: relative;
    color: black;
}
a.disabled {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1440px;
    }
}

.nav-link:focus, .nav-link:hover {
    color: #000000;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    text-align: left;
}

.nav-link {
    color: #000000;
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: #000000;
    margin-bottom: 10px;
}

.nav-pills .nav-link {
    margin-bottom: 10px;
}

.input-file {
    position: relative;
    display: inline-block;
}

.input-file-text {
    padding: 0 10px;
    line-height: 40px;
    text-align: left;
    /*height: 40px;*/
    display: block;
    float: left;
    /*box-sizing: border-box;*/
    width: 100%;
    /*border-radius: 6px 0px 0 6px;*/
    /*border: 1px solid #ddd;*/
}

.input-file-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    vertical-align: middle;
    color: rgb(255 255 255);
    text-align: center;
    border-radius: 10px;
    background-color: #419152;
    line-height: 22px;
    height: 40px;
    padding: 10px 20px;
    box-sizing: border-box;
    border: none;
    margin: 0;
    transition: background-color 0.2s;
}

.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

/* Focus */
.input-file input[type=file]:focus + .input-file-btn {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

