/*---------- Multiple Select Drop Down List Style ----------*/
.fml-custom-select {
    position: relative;
}

.fml-select-box {
    background-color: #ffffff;
    border:none;
    border-bottom: 1.5px solid rgba(0, 0, 0, .2);
    border-radius: 0;
    /*border: 1px solid #cde4da;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 50px;
    padding: 5px 10px;
}

.fml-selected-options {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    height: auto;
}

.fml-tag {
    background-color: #f2f2f2;
    /*color: #FFFFFF;*/
    border-radius: 5px;
    margin: 3px;
    padding: 6px 14px;
    /*display: flex;*/
    /*align-items: center;*/
    cursor: text;
}

.fml-remove-tag {
    margin-left: 6px;
    cursor: pointer;
}

.fml-plus-button {
    margin: 0 10px;
    cursor: pointer;
}

.fa-plus {
    color: #404040;
    font-size: 20px;
}

.fml-options {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #FFFFFF;
    border: none;
    border-top: 1px solid var(--bs-primary);
    /*border: 1px solid #cde4da;*/
    /*border-top: none;*/
    max-height: 225px;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.fml-open .fml-options {
    display: block;
}

.fml-option {
    padding: 12px;
    cursor: pointer;
}

.fml-option.fml-active {
    color: #FFFFFF;
    background-color: #52BCD3;
    border-bottom: 1px solid #eaeaea;
}

.fml-tag:hover,
.fml-option:hover {
    background-color: #e7e7e7;
    /*color: #FFFFFF;*/
}

/*---------- Dynamic inputs Style ----------*/
.remove-icon {
    color: #ff7c3a;
    font-size: 30px;
}

.remove-icon:hover {
    color: #dc6731;
    cursor: pointer;
}

.ig-add-button, .remove-button {
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
}


/*---------- Pricing page ----------*/
.bi-check2-circle{
    color: green;
}
.bi-dash-circle{
    color:darkred;
}
.centered-img{
    vertical-align: baseline;
}
.bronze {
    background-color: #B0C4DE;
}

.bronze-text {
    color: #B0C4DE;
}

.silver {
    color: #fff;
    background-color: #C0C0C0;
}

.gold {
    color: #fff;
    background-color: #FFD700;
}

.gold-text {
    color:#FFD700;
}

/*.content .plan {*/
/*    position:relative;*/
/*    top:30px;*/
/*    background: #c4e3e97d;*/
/*    padding-top:40px;*/
/*    padding-bottom:40px;*/
/*    border-radius:7px;*/
/*    color:#777;*/
/*    box-shadow:5px 5px 0 rgba(0,0,0,0.05);*/
/*    -webkit-transition:all .3s ease-out;*/
/*    transition:all .3s ease-out;*/
/*}*/

/*.content .plan.featured {*/
/*    top:0;*/
/*    padding-top:50px;*/
/*    padding-bottom:50px;*/
/*}*/

/*.content .plan:hover,*/
/*.content .plan.featured {*/
/*    background:#5CC9DF;*/
/*    color:#fff;*/
/*}*/

.plan h2 {
    font-size:28px;
    font-weight:700;
    margin-bottom:0;
    text-transform:uppercase;
}

/*.content .plan.featured h2 {*/
/*    margin-bottom:10px;*/
/*}*/

/*.content .plan p {*/
/*    margin-bottom:5px;*/
/*    font-weight:400;*/
/*}*/

.plan .icon {
    display:inline-block;
    margin-bottom:30px;
    width:120px;
    height:120px;
    border-radius:50%;
    font-size:48px;
    line-height:120px;
    -webkit-transition:all .3s ease-out;
    transition:all .3s ease-out;
}

/*.content .plan.featured .icon,*/
/*.content .plan:hover .icon{*/
/*    color:#5cc9df;*/
/*    background:#fff;*/
/*}*/

/*.content .plan .btn-pricing {*/
/*    margin-top:20px;*/
/*    margin-bottom:0;*/
/*    font-size:16px;*/
/*    padding:10px 20px;*/
/*}*/

/*.content .plan.featured .btn-pricing,*/
/*.content .plan:hover .btn-pricing {*/
/*    background: #fff;*/
/*    color:#5CC9DF;*/
/*}*/

/*.content .plan .price {
    font-size:48px;
    font-weight:100;
    line-height:48px;
}*/

/* -------------------------- Review -------------------------- */
fieldset, label { margin: 0; padding: 0; }

/****** Style Star Rating Widget *****/

.rating, .rating-display {
    border: none;
}

.rating > [id^="star"] { display: none; }
.rating-display > [id^="d-star"] { display: none; }

.rating > label:before,
.rating-display > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before,
.rating-display > .half:before
{
    content: "\f089";
    position: absolute;
}

.rating > label,
.rating-display > label
{
    color: #ddd;
    float: right;
}

/***** CSS Magic to Highlight Stars on Hover *****/

/*.rating > [id^="star"]:checked ~ label, !* show gold star when clicked *!*/
.rating > input:checked ~ label,
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

/*.rating > [id^="star"]:checked + label:hover, !* hover current star when changing rating *!*/
/*.rating > [id^="star"]:checked ~ label:hover,*/
/*.rating > label:hover ~ [id^="star"]:checked ~ label, !* lighten current selection *!*/
/*.rating > [id^="star"]:checked ~ label:hover ~ label { color: #FFED85;  }*/

.checked {
    color: orange !important;
}
.checked.blue {
    color: var(--bs-blue) !important;
}
.review-detail .rating-display > label:before{
    font-size: 1em;
}