.strength-bar {
    display: block;
    min-height: 5px;
    width: 60px;
    border-radius: 50px;
    margin-right: 3px;
    background-color: #dddddd;
}

.strength-bar__default {
    background-color: #ff0000;
}

.strength-bar__orange {
    background-color: orange;
}

.strength-bar__green {
    background-color: green;
}

.svg-rank_Beginner {
    color: orange;
    fill: orange;
}

.banner-dp {
    cursor: pointer;
}

.banner-dp__items {
    position: relative;
    /* width: 250px; */
    /* height: 250px; */
    height: max-content;
    width: max-content;
    border-radius: 100%;
    /* background-color: yellowgreen; */
}

.banner-dp * img {
    border-radius: 100%;
    width: 250px;
    height: 250px;
    /* inset: 1; */
}

.banner-dp__overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    /* width: 250px;
    height: 250px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    opacity: 0;
    /* z-index: 9999; */
}

.banner-dp__overlay:hover {
    opacity: 1;
}

.verbanner-dp {
    height: 250px;
    position: relative;
}

.verbanner-dp__items {
    /* position: relative; */
    /* width: 500px; */
    height: 250px;
    /* border-radius: 100%; */
    /* background-color: yellowgreen; */
}

.verbanner-dp * img {
    /* border-radius: 100%; */
    width: 100%;
    height: inherit;
    object-fit: contain;
    /* height: 250px; */
    /* inset: 1; */
}

.verbanner-dp__overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    /* width: 250px;
    height: 250px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 100%; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    opacity: 0;
    /* z-index: 9999; */
}

.verbanner-dp__overlay:hover {
    opacity: 1;
}

.own-asterisk {
    color: red !important;
}

/* ###### custom ####### */
body *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    transition: 0.3s background;
}

body *::-webkit-scrollbar-thumb,
body *:hover::-webkit-scrollbar-thumb {
    background: #c2cbdf;
}

body *::-ms-webkit-scrollbar-track {
    background: #fff;
}

body *::-ms-webkit-scrollbar {
    width: 5px;
    height: 5px;
    transition: 0.3s background;
}

body *::-ms-webkit-scrollbar-thumb,
body *:hover::-ms-webkit-scrollbar-thumb {
    background: #c2cbdf;
}

body *::-ms-webkit-scrollbar-track {
    background: #fff;
}

.rate-one i {
    color: #ff3722 !important;
}
.rate-two i {
    color: #ff8622 !important;
}
.rate-three i {
    color: #ffce00 !important;
}
.rate-four i {
    color: #73cf11 !important;
}
.rate-five i {
    color: #00b67a !important;
}

.signal-bar {
    display: block;
    height: 5px;
    width: 15px;
    /* border-radius: 50px; */
    margin-right: 3px;
    background-color: #dddddd;
}

.signal-bar__one {
    background-color: #ff3722 !important;
}

.signal-bar__two {
    background-color: #ff8622 !important;
}

.signal-bar__three {
    background-color: #ffce00 !important;
}

.signal-bar__four {
    background-color: #73cf11 !important;
}

.signal-bar__five {
    background-color: #00b67a !important;
}

/* Preloader Area Style
============================================*/
#ajax-preloader {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    position: fixed;
    background-color: #fff;
    display: none;
}
#ajax-preloader .preloader {
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}
#ajax-preloader .preloader .loader {
    position: relative;
    overflow: hidden;
    display: block;
    height: 150px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}
#ajax-preloader .preloader .loader div {
    height: 100%;
}
#ajax-preloader .preloader .loader,
#ajax-preloader .preloader .loader div {
    padding: 8px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotate linear 3.5s infinite;
    border-top-color: #605dff;
    border-border-bottom: #605dff;
}
#ajax-preloader .preloader .waviy {
    position: relative;
    text-align: center;
    -webkit-box-reflect: below -47px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
    font-size: 50px;
    font-weight: 700;
}
#ajax-preloader .preloader .waviy span {
    position: relative;
    color: #000000;
    animation-delay: 0.1s;
    display: inline-block;
    animation: waviy 1s infinite;
}
#ajax-preloader .preloader .waviy span:nth-child(2) {
    animation-delay: 0.2s;
}
#ajax-preloader .preloader .waviy span:nth-child(3) {
    animation-delay: 0.3s;
}
#ajax-preloader .preloader .waviy span:nth-child(4) {
    animation-delay: 0.4s;
}
#ajax-preloader .preloader .waviy span:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes waviy {
    0%,
    40%,
    100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-20px);
    }
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
    #ajax-preloader .preloader .waviy {
        font-size: 30px;
    }
}
