.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
.profile-pic input {
    display: none;
}
.profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 165px;
    height: 165px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    z-index: 0;
}
.profile-pic .-label {
    cursor: pointer;
    height: 165px;
    width: 165px;
}
.profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
    margin-bottom: 0;
}
.profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}
/*body {*/
/*    height: 100vh;*/
/*    background-color: #191815;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/
/*body a:hover {*/
/*    text-decoration: none;*/
/*}*/

label,
input {
    font-size: 18px;
}

.card {
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    margin-bottom: 1rem;

    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

/**/
.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}
.custom-file-input::before {
    content: "Select some files";
    display: inline-block;
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}
.custom-file-input:hover::before {
    border-color: black;
}
.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.mr-custom {
    margin-top: 12px;
}

/*   */

.New_Margin {
    margin-right: 89px;
}

.custom-padding {
    padding: 0.5rem 1rem;
}

.delete_icon {
    position: absolute;
    max-width: 5%;
    left: -5px;
    top: 5px;
    font-size: 23px;
    color: orangered;
}
.edit_icon {
    position: absolute;
    max-width: 5%;
    left: 46px;
    top: 5px;
    font-size: 23px;
    color: #5d5ad9;
}

.Desired_detail_row {
    position: relative;
    border: 2px solid #012970;
    border-radius: 10px;
    background: #dce9e9;
    max-width: 85%;
}

.desktop_margin {
    margin: 10px 10%;
}

.mobile_margin {
    margin: 10px 0px;
}

.delete_icon_mobile {
    position: absolute;
    max-width: 5%;
    left: -35px;
    top: 64px;
    font-size: 23px;
    color: orangered;
}

.edit_icon_mobile {
    position: absolute;
    max-width: 5%;
    left: -29px;
    top: 5px;
    font-size: 23px;
    color: #5d5ad9;
}

/*     */

/*the container must be positioned relative:*/
.autocomplete {
    position: relative;
    display: inline-block;
}

input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}

input[type="text"] {
    background-color: #f1f1f1;
    width: 100%;
}

input[type="submit"] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.tabs {
    position: relative;
    margin: 3rem 0;
    /* background: #1abc9c; */
    height: 30rem;
}
.tabs::before,
.tabs::after {
    content: "";
    display: table;
}
.tabs::after {
    clear: both;
}
.tab {
    float: left;
    min-width: 50%;
    text-align: center;
}
.tab-switch {
    display: none;
}
.tab-label {
    position: relative;
    display: block;
    line-height: 2.1em;
    height: 2em;
    padding: 0 1.618em;
    background: #dddddd;
    border-right: 0.125rem solid #dddddd;
    color: #6a6868;
    cursor: pointer;
    top: 0;
    transition: all 0.25s;
    margin: 5px;
    border: 2px solid #ccc;
    border-radius: 15px;
}
.tab-label:hover {
    top: -0.25rem;
    transition: top 0.25s;
}
.tab-content {
    /* height: 12rem; */
    position: absolute;
    z-index: 1;
    top: 2.75em;
    left: 0;
    padding: 1.618rem;
    /* background: #fff; */
    color: #2c3e50;
    /* border-bottom: 0.25rem solid #bdc3c7; */
    opacity: 0;
    transition: all 0.35s;
    min-width: -webkit-fill-available;
}
.tab-switch:checked + .tab-label {
    background: #012970;
    color: #ffffff;
    border-bottom: 0;
    border-right: 0.125rem solid #fff;
    transition: all 0.35s;
    z-index: 1;
    top: -0.0625rem;
}
.tab-switch:checked + label + .tab-content {
    z-index: 2;
    opacity: 1;
    transition: all 0.35s;
}

/* news details */

.count-box {
    border: #4154f1 2px solid;
    border-radius: 20px;
}

.news_title {
    text-align: -webkit-center;
}

@media (max-width: 425px) {
    .NewsImg {
        width: 90px;
        margin: 0px 5px;
    }

    .NewsImg img {
        width: 100%;
        height: 54px;
        margin-bottom: 13px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3,
            8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
    }

    h6 {
        font-size: 13px;
    }

    .news_title {
        font-size: 26px;
        padding-top: 15px;
    }

    .add_to_favorite {
        left: -32% !important;
        position: relative;
        top: -5px;
        width: 50% !important;
    }

    .add_to_text {
        left: 11px;
        position: relative;
        top: 5px;
        width: 100px;
        display: inline-flex;
    }
}

@media (min-width: 426px) {
    .NewsImg {
        width: 120px;
        margin: 0px 30px;
    }

    .NewsImg img {
        width: 100%;
        height: 120px;
        margin-bottom: 13px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3,
            8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
    }

    .news_title {
        font-size: 22px;
        display: initial !important;
        font-weight: 600;
        color: #0b198f;
    }

    .add_to_favorite {
        text-align: -webkit-left;
        position: relative;
        left: -68%;
        top: -58px;
    }

    .add_to_text {
        left: 6%;
        position: relative;
        top: 5px;
        width: 150px;
        display: -webkit-inline-box;
    }

    .counts .count-box {
        padding: 50px 9px 9px 9px !important;
    }

    .Title_div {
        width: 74.333333%;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 380.98px) {
    .ProContainer {
        min-width: 200%;
        text-align: center;
        margin-left: -18px;
    }

    .progressbar {
        counter-reset: step;
    }
    .progressbar a {
        list-style: none;
        display: table-cell;
        min-width: 14%;
        position: relative;
        text-align: center;
        cursor: pointer;
        font-size: 13px;
        color: #6a6868;
    }
    .progressbar a:before {
        content: counter(step);
        counter-increment: step;
        width: 35px;
        height: 35px;
        line-height: 30px;
        border: 3px solid #ddd;
        border-radius: 100%;
        display: block;
        text-align: center;
        margin: 0px 45px 0px 125px;
        background-color: #fff;
    }
    .progressbar a:after {
        content: "";
        position: absolute;
        width: 275px;
        height: 12px;
        background-color: #ddd;
        top: 11px;
        right: -64%;
        z-index: -1;
    }
    .progressbar a:first-child:after {
        content: none;
    }
    .progressbar a.active {
        color: #012970;
    }
    .progressbar a.active:before {
        border-color: #012970;
    }
    .progressbar a.active + a:after {
        background-color: #012970;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .ProContainer {
        width: 100%;
        text-align: center;
    }

    .progressbar {
        counter-reset: step;
    }
    .progressbar a {
        list-style: none;
        display: table-cell;
        width: 9.6%;
        position: relative;
        text-align: center;
        cursor: pointer;
        font-size: 13px;
        color: #6a6868;
    }
    .progressbar a:before {
        content: counter(step);
        counter-increment: step;
        width: 35px;
        height: 35px;
        line-height: 30px;
        border: 3px solid #ddd;
        border-radius: 100%;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        background-color: #fff;
    }
    .progressbar a:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 12px;
        background-color: #ddd;
        top: 11px;
        right: -46%;
        z-index: -1;
    }
    .progressbar a:first-child:after {
        content: none;
    }
    .progressbar a.active {
        color: #012970;
    }
    .progressbar a.active:before {
        border-color: #012970;
    }
    .progressbar a.active + a:after {
        background-color: #012970;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .ProContainer {
        width: 100%;
        text-align: center;
    }

    .progressbar {
        counter-reset: step;
    }
    .progressbar a {
        list-style: none;
        display: table-cell;
        width: 9.6%;
        position: relative;
        text-align: center;
        cursor: pointer;
        font-size: 13px;
        color: #6a6868;
    }
    .progressbar a:before {
        content: counter(step);
        counter-increment: step;
        width: 35px;
        height: 35px;
        line-height: 30px;
        border: 3px solid #ddd;
        border-radius: 100%;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        background-color: #fff;
    }
    .progressbar a:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 12px;
        background-color: #ddd;
        top: 11px;
        right: -46%;
        z-index: -1;
    }
    .progressbar a:first-child:after {
        content: none;
    }
    .progressbar a.active {
        color: #012970;
    }
    .progressbar a.active:before {
        border-color: #012970;
    }
    .progressbar a.active + a:after {
        background-color: #012970;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .ProContainer {
        width: 100%;
        text-align: center;
    }

    .progressbar {
        counter-reset: step;
    }
    .progressbar a {
        list-style: none;
        display: table-cell;
        width: 9.6%;
        position: relative;
        text-align: center;
        cursor: pointer;
        font-size: 13px;
        color: #6a6868;
    }
    .progressbar a:before {
        content: counter(step);
        counter-increment: step;
        width: 35px;
        height: 35px;
        line-height: 30px;
        border: 3px solid #ddd;
        border-radius: 100%;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        background-color: #fff;
    }
    .progressbar a:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 12px;
        background-color: #ddd;
        top: 11px;
        right: -46%;
        z-index: -1;
    }
    .progressbar a:first-child:after {
        content: none;
    }
    .progressbar a.active {
        color: #012970;
    }
    .progressbar a.active:before {
        border-color: #012970;
    }
    .progressbar a.active + a:after {
        background-color: #012970;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .ProContainer {
        width: 100%;
        text-align: center;
    }

    .progressbar {
        counter-reset: step;
    }
    .progressbar a {
        list-style: none;
        display: table-cell;
        width: 9.6%;
        position: relative;
        text-align: center;
        cursor: pointer;
        font-size: 13px;
        color: #6a6868;
    }
    .progressbar a:before {
        content: counter(step);
        counter-increment: step;
        width: 35px;
        height: 35px;
        line-height: 30px;
        border: 3px solid #ddd;
        border-radius: 100%;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        background-color: #fff;
    }
    .progressbar a:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 12px;
        background-color: #ddd;
        top: 11px;
        right: -46%;
        z-index: -1;
    }
    .progressbar a:first-child:after {
        content: none;
    }
    .progressbar a.active {
        color: #012970;
    }
    .progressbar a.active:before {
        border-color: #012970;
    }
    .progressbar a.active + a:after {
        background-color: #012970;
    }
}
.count-item {
    position: absolute;
    top: -30px;
    right: 9px;
    background: #f5bfab;
    padding: 10px;
    border-radius: 60%;
    z-index: -1000;
}

#main-navbar[data-loaded="dpl"] .badge {
    position: absolute;
    font-size: 0.6rem;
    margin-top: -0.1rem;
    margin-left: -0.5rem;
    padding: 0.2em 0.45em;
}
.double-nav .nav-link .badge {
    height: 15px;
    padding-top: 2px;
}
.badge {
    color: #fff !important;
    border-radius: 0.125rem;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%),
        0 2px 10px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.bg-danger {
    background-color: #ff3547 !important;
}

/* placeholder color for all inputs */
.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bebdbd;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bebdbd;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bebdbd;
}

@media (max-width: 380px) {
    .mobile_view {
        position: absolute;
        left: 36px;
        list-style-type: none;
    }

    .navbarNotificationCounter {
        position: absolute;
        position: absolute;
        top: -5px;
        left: 23px;
    }

    .desktop_view {
        /* display: none; */
    }

    .heroimg {
        margin-top: 0px;
    }
}

@media (min-width: 381px) {
    .mobile_view {
        display: none;
    }
}

@media (max-width: 380px) {
    .card {
        margin-bottom: 0rem;
    }

    .card-header {
        padding: 5% !important;
    }

    .card-body {
        padding-top: 0px !important;
    }

    .form-select {
        display: block;
        width: 100%;
        padding: 0.2rem 0.5rem 0.2rem 0.5rem;
        -moz-padding-start: calc(0.75rem - 3px);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        display: inline-block;
        width: 10px;
        height: 1px;
        background-position: left 0.1rem center;
        background-size: 10px 10px;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}
@media (max-width: 380px) {
    .btn-group-lg > .btn,
    .btn-lg {
        font-size: 0.9rem !important;
    }

    .scroll {
        overflow: scroll;
    }
}
