* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    outline: unset;
    box-shadow: none;
}

/*login wave styling*/
@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    /*background-image: linear-gradient(to top, #86377b 20%, #27273c 80%);*/
    background-image: linear-gradient(to top, #054102 20%, #224203 80%)
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

/*login page styling*/

.login {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    z-index: 20;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 65px);
}

.login-head {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding-bottom: 18px;
}

.login-wrap {
    border: 1px solid #707070;
    background-color: #fff;
    border-radius: 25px 75px;
    padding: 25px 52px;
    margin: 20px 0px;
    text-align: center;
    width: 100%;
}

.login-wrap .logo {
    display: inline-block;
    margin: 3px 0px;
}

.login-wrap .select-box {
    margin: 15px 0px 10px;
}

.login-wrap .sub-head {
    color: #63A3E3;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0px;
}

.login-wrap .form-group {
    background-color: #FDDF93;
    border-radius: 53px;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    margin: 10px 0px;
}

.login-wrap .form-control {
    border: none;
    background-color: transparent;
    width: 100%;
    margin-left: 20px;
}

.login-wrap .content {
    color: #504D4D;
    font-size: 20px;
    opacity: 0.5;
    padding: 5px 0px 15px;
}

.send-otp {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 53px;
    max-width: 300px;
    width: 100%;
    background-color: #63A3E3;
    margin: 40px auto 0px;
    display: flex;
    padding: 20px 30px;
    align-items: center;
    cursor: pointer;
}

.send-otp .btn {
    background-color: transparent;
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    width: 100%;
    margin-right: 20px;
    border: none;
    cursor: pointer;
}

/*custom check box styling*/
.checkbox-field {
    padding: 20px 0px 0px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 15px;
}

.checkbox-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}


.checkbox-group .checkbox-label {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: #504D4D;
    display: flex;
    align-items: baseline;
    text-align: left;

}

.checkbox-group .checkbox-label p {
    opacity: 0.5;
}

.checkbox-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 25px;
    background-color: #98A3A4;
    top: 4px;
}

.checkbox-group input:checked+label:before {
    background-color: #054102;
}

.checkbox-group input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 7px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    background-color: #054102;
}

/*left sidebar styling*/
.layout-fixed .main-sidebar {
    top: 30px;
    left: 20px;
    position: absolute;
}

:not(.layout-fixed) .main-sidebar {
    min-height: auto !important;
}

.sidebar-mini .wrapper {
    background-color: #F8FFF8;
    padding: 30px;
    max-width: 1800px;
    margin: 0 auto;
}

.content-wrapper {
    background-color: #F8FFF8;
}

.lovpipo-left-sidebar {
    box-shadow: 0px 3px 11px #00000029;
    border-radius: 34px;
    background-color: #fff;
}

.lovpipo-left-sidebar .brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    s
}

.lovpipo-left-sidebar .nav-pills .nav-link.active,
.lovpipo-left-sidebar .nav-pills .show>.nav-link {
    background-image: linear-gradient(90deg, #FDDF93, #fff);
    color: green;
    background-color: transparent;
}

.line {
    border-radius: 4px;
    opacity: 0.4;
    border-bottom: 2px solid #FDDF93;
    width: 100px;
    margin-left: 13px;
}

.lovpipo-left-sidebar .nav-sidebar .nav-link p {
    font-size: 20px;
    color: #98A3A4;
    font-weight: 500;
    margin-left: 10px;
}

.lovpipo-left-sidebar .nav-link img {
    width: 20px;
    object-fit: contain;
    height: 20px;
}

.lovpipo-left-sidebar .nav-pills .nav-link.active,
.nav-pills .nav-link.active p {
    color: #054102;
}

.lovpipo-left-sidebar .nav-pills .nav-link:hover,
.nav-pills .nav-link:hover p {
    color: #054102;
}

.lovpipo-left-sidebar .left-main-content {
    font-size: 20px;
    color: #98A3A4;
}

/*home page styling*/
.main-header {
    border-bottom: none;
}

.profile-box {
    width: 40px;
    height: 40px;
    background-color: #FDDF93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.profile-box .form-control {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
}

.profile-box .form-label {
    font-size: 20px;
    color: #054102;
    font-weight: 500 !important;
    margin-bottom: 0;
    display: flex;
    cursor: pointer;
}

.header-right-box {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 29px;
    background-color: #fff;
    padding: 5px 10px;
}

.form-inline {
    width: 70%;
}

.form-inline .input-group {
    border: 1px solid #054102;
    border-radius: 53px;
    background-color: #fff !important;
    max-width: 700px;
    width: 70%;
    height: 40px;
    margin-left: 50px;
}

.navbar-light .btn-navbar,
.navbar-light .form-control-navbar {
    background-color: #fff;
    border-radius: 53px !important;
    height: 100% !important;
}

.form-head {
    font-size: 26px;
    font-weight: bold;
    color: #000000;
}

.lovpipo-main-header .form-control {
    border: none;
    height: 100% !important;
    background-color: transparent;
    font-size: 14px;
}

/*home page top box styling*/
.dropdown-box {
    width: 50%;
}

.select-box {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    opacity: 1;
    background-color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.select-innerbox {
    border: none;
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    color: #707070;
    font-size: 18px;
    padding: 0px 20px;
}

.select-innerbox:focus {
    box-shadow: none;
    outline: none;
}

.dropdown-icon {
    pointer-events: none;
    cursor: pointer;
    position: relative;
    right: 15px;
}

.refresh-box {
    width: 200px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    opacity: 1;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 18px;
    padding: 10px 20px;
}

.generate-pdf-box {
    width: 200px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    opacity: 1;
    background-color: #fff;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 18px;
    padding: 10px 20px;
    color: #63A3E3;
}

.generate-pdf-box .form-label {
    margin-bottom: 0;
}

.generate-pdf-box .form-control {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

/*home page second section box styling*/
.small-box {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.small-box-number {
    padding-top: 15px;
}

.small-box-number .number {
    font-weight: 500;
}

.blue-number {
    color: #63A3E3;
}

.green-number {
    color: #9ABF00;
}

.orange-number {
    color: #FDDF93;
}

.red-number {
    color: #F40505;
}

.hambarger-icon {
    display: none;
}


/*user page styling*/
.hor-line {
    border-bottom: 2px solid #d8ddd8;
    margin: 15px 0px;
}

.tabs-section .nav-link {
    color: #000000;
    font-size: 26px;
    background-color: #FAFAFA;
    font-weight: bold;
    border-radius: 25px 25px 0px 0px;
    padding: 10px 25px;
}

.tabs-section .nav-pills .nav-link.active {
    background-color: #fddf93;
    color: #000;
}

.tabs-section .nav-pills .nav-link:not(.active):hover {
    color: #000;
}

.verified-inneruser{
    height: 100%;
    display: block;i
}

.user-box {
    box-shadow: 0px 3px 11px #00000029;
    border-radius: 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    height: 100%;
    padding: 20px;
}

.user-image img {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 14px;
    display: inline-block;
    width: 84px;
    height: 84px;
    object-fit: contain;
}


.user-body h2 {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 6px 0px 2px;
}

.user-body p {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    word-break: break-all;
    opacity: 50%;
    padding: 3px 0px 0px;
}

.error-img {
    position: absolute;
    right: 4px;
    top: 7px;
    width: 30px;
}

.link-active,
.link-slash {
    right: 15px;
    width: 25px;
    top: 10px;
    position: absolute;
}

/*code dena h*/
.breadcrumb-box .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    color: #000000;
    font-size: 20px;
    padding-right: 8px;
}

.breadcrumb-box .breadcrumb-item a {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.breadcrumb-box .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}

.button-group .btn {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    font-size: 18px;
    padding: 7px 15px;
}

.button-group .edit-btn {
    color: #000000;
}

.button-group .btn img {
    margin-left: 15px;
}

.save-btn {
    color: #63A3E3;
}

.verify-btn {
    color: #00BF59;
}

.suspend-btn {
    color: #F40505;
}

.button-group .btn+.btn {
    margin-left: 10px;
}

/*user-detail tab section styling*/

.user-detail-tabs .nav-pills .nav-link {
    color: #000000;
    font-size: 23px;
    opacity: 50%;
    padding: 5px 5px;
}

.user-detail-tabs .nav-pills .nav-link.active {
    background-color: transparent;
    font-weight: bold;
    position: relative;
}

.user-detail-tabs .nav-pills .nav-link.active:before {
    content: '';
    border-bottom: 4px solid #63A3E3;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0px;
    border-radius: 4px;
}

.user-detail-tabs .nav-pills .nav-link:not(.active):hover {
    font-weight: 500;
    color: #000;
    opacity: 50%;
}

.user-detail-tabs .nav-item+.nav-item {
    margin-left: 30px;
}

.user-detail-bg {
    background-color: #fff;
    border-radius: 0px 99px;
    padding: 15px 75px 15px 20px;
}

.profile-carousel .profile-image img {
    box-shadow: 0px 0px 0px #00000029;
    border-radius: 14px;
    overflow: hidden;
}

.profile-carousel .profile-image {
    max-width: 100%;
    height: 100%;
    border-radius: 14px;
    width: 100%;
}

.profile-carousel .item {
    max-width: 265px;
    height: 265px;
}

.profile-carousel .owl-item img {
    height: 100%;
    object-fit: cover;
}

.profile-carousel .owl-dot {
    background-color: #FFB5B5 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0px 5px;
}

.profile-carousel .owl-nav {
    font-size: 0;
    width: 0;
}

.profile-carousel .owl-dots {
    max-width: 120px;
    margin: 0 auto;
}

.user_profile-left .profile-content .title {
    font-size: 25px;
    color: #000000;
    font-weight: 500;
    margin: 15px 0px;
}

.user_profile-left .profile-content .title span {
    display: block;
    opacity: 50%;
}

.user_profile-left .profile-content .sub-head {
    font-size: 19px;
    color: #98A3A4;
    margin: 15px 0px;
}

.user_profile-left .profile-content .sub-head .sub-title {
    display: block;
    font-weight: 500;
    color: #414141;
    line-height: 15px;
    word-break: break-all;
}

.user_profile-right .head {
    font-size: 23px;
    color: #008996;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 15px;
}

.switch-box .form-switch {
    padding-left: 60px;
}

.switch-box .form-check-input:focus {
    box-shadow: none;
}

.switch-box .form-check-input:checked {
    background-color: #0BC71E;
    border-color: #0BC71E;
}

.rating-record-box .record-innerbox h2 {
    font-size: 33px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    padding: 15px 0px;
}

.rating-record-box .record-innerbox p {
    font-size: 33px;
    color: #63A3E3;
    font-weight: 500;
    text-align: center;
    padding: 15px 0px;
    line-height: 20px;
}

.rating-record-box .record-innerbox {
    margin-bottom: 20px;
}

.rating-record-box {
    max-width: 700px;
    margin: 20px auto 0px;
}

.divider {
    border-bottom: 1px solid #707070;
    opacity: 0.2;
    margin: 15px 0px;
}

.record-innerbox .color-red {
    color: #F40505 !important;
}

.user_profile-right .content p {
    max-width: 300px;
    margin-right: 20px;
    width: 100%;
}

.user-detail-body {
    padding-bottom: 10px;
}

.user_profile-right .content p span {
    display: block;
}

.user_profile-right .content {
    display: flex;
    justify-content: space-between;
    font-size: 19px;
    color: #414141;
    text-align: left;
    padding: 10px 100px 10px 30px;
}

.user_profile-right .question-field {
    background-color: #fafafa;
    border-radius: 25px;
}

.user_profile-right .answer-field {
    font-weight: 500;
}

.relationship-box .user-box {
    box-shadow: none;
    background-color: #FAFAFA;
}

.relationship-box .user-image img {
    width: 84px;
    height: 84px;
    object-fit: cover;
}

.relationship-box .user-body .date-show span {
    background-color: #fff !important;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 11px;
    margin: 0px 3px;
    padding: 3px;
    opacity: 100% !important;
}

.relationship-box .user-body .date-show {
    opacity: 100%;
    color: #504D4D;
}

/*rating styling*/
.table-box th p {
    font-size: 14px;
    color: #414141;
    font-family: Helvetica;
    text-align: center;
}

.color-blue {
    color: #63A3E3;
    font-weight: 500;
    font-size: 33px;
}

.table-box td {
    text-align: center;
    padding: 10px;
}


.bgColor {
    background-color: #fafafa;
    padding: 4px;
}

.first-row th:nth-child(2) {
    border-radius: 20px 0px 0px 20px;
    padding-left: 20px;
}

.first-row th:last-child {
    border-radius: 0px 20px 20px 0px;
    padding-right: 20px;
}

/*market page styling*/
.notification-box a {
    font-size: 26px;
    color: #054102;
    font-weight: bold;
}

.notification-box .notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #054102;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
}

.plus-icon {
    width: 20px;
    height: 20px;
    background-color: #63A3E3;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

/*reward submission page styling*/
.reward-search-field {
    width: 80%;
}

.reward-search-field .input-group {
    width: 55%;

}

.reward-section {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
}

.reward-section thead th {
    color: #98A3A4;
    font-size: 20px;
    font-weight: 400;
    padding: 10px 5px;
}

.reward-section tbody tr {
    border-top: 1px solid #7070705c;
}

.reward-section tbody td {
    padding: 10px 5px;
}

.reward-section .content {
    color: #054102;
    font-weight: 500;
    font-size: 16px;
}

.reward-section .color-red {
    color: #F40505;
}

.reward-section .color-green {
    color: #0ACF00;
}

.attech-file .hide-file {
    visibility: hidden;
    width: 0;
    height: 0;
}

.action-btn .approve-btn {
    background-color: #00BF59;
}

.action-btn .reject-btn {
    background-color: #FE7676;
}

.action-btn .btn {
    border-radius: 33px;
    color: #FFFFFF;
    font-size: 16px;
}

.reward-by .profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

/*reward morder styling*/
.reward-modal .modal-dialog {
    border-radius: 43px;
}

.reward-modal .modal-content {
    background-color: #fff;
    border-radius: 43px;
    padding: 20px;
}

.reward-modal .modal-header {
    border-bottom: none;
}

.reward-modal .modal-footer {
    justify-content: space-around;
    border-top: none;
}

.reward-modal .modal-footer .btn {
    font-size: 23px;
    border-radius: 33px;
    padding: 10px 30px;
}

.reward-modal .modal-footer .btn-cancle {
    color: #FE7676;
    border: 1px solid #FE7676;
}

.reward-modal .modal-footer .btn-proceed {
    background-color: #00BF59;
    color: #fff;
    border: 1px solid #00BF59;
}

.reward-modal .modal-footer .btn-cancle:hover {
    background-color: #FE7676;
    color: #fff;
}

.reward-modal .modal-footer .btn-proceed:hover {
    background-color: #fff;
    color: #00BF59;
}

.reward-modal .modal-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0px;
}

.reward-modal .modal-content p {
    font-size: 15px;
    color: #000000;
}

.reward-modal .modal-content .hor-line {
    border-bottom: 2px solid #000000;
    width: 200px;
    margin: 20px auto 10px;
}

.rejected-modal .modal-content h2 {
    max-width: 250px;
    margin: 20px auto 50px;
}

.reward-modal .image-box {
    max-width: 90px;
    height: 90px;
    width: 100%;
    margin: 0 auto;
}

/*reward allocation page styling*/
.reward-allocation-box .head {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin: 10px 0px;
}

.month-card {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 26px;
    background-color: #fff;
    padding: 10px 20px;
}

.month-card .content {
    font-size: 17px;
    color: #000000;
}

.month-card .content-number {
    font-size: 26px;
    color: #000000;
}

.month-content-box {
    padding: 10px 0px 40px;
}

.month-img-box {
    padding: 5px 0px;
}

/*custom radio button styling*/
.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio [type="radio"]:checked+label,
.custom-radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    font-size: 22px;
    display: inline-block;
    color: #707070;
    font-weight: 400;
    margin-bottom: 0px;
}

.custom-radio [type="radio"]:checked+label:before,
.custom-radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #63A3E3;
    border-radius: 100%;
    background: #fff;
}

.custom-radio [type="radio"]:checked+label:after,
.custom-radio [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #63A3E3;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.create-notification-box .create-notification-innerbox {
    padding: 10px 20px;
    border: 1px solid #0541023B;
    border-radius: 22px;
    background-color: #fff;
    color: #707070;
    font-size: 24px;
}

.create-notification-box .box2 input {
    border: none;
    color: #504D4D;
    font-size: 20px;
}

.create-notification-box .box2 {
    box-shadow: inset 0px 3px 6px #00000029;
    border: 1px solid #98A3A4;
    border-radius: 53px;
}


.create-notification-box .box2 input:focus {
    outline: none;
}

.create-notification-box .verification-box {
    max-width: 450px;
    width: 100%;
    margin: 30px 0px 20px;
}


.create-notification-box .textarea-field {
    width: 100%;
    color: #707070;
    font-size: 20px;
    border: 1px solid #C0CFC0;
    border-radius: 21px;
    padding: 10px 15px;
    margin: 14px 0px;
    min-height: 250px;
}

.schedule-box input {
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.warning-modal .warning-content {
    color: #F40505;
    font-size: 26px;
    font-weight: bold;
}

.attech-file {
    border: 1px solid #054102;
    border-radius: 20px;

}

.attech-file label {
    margin-bottom: 0;
    display: flex;
    cursor: pointer;
    align-items: center;
    padding: 8px 15px;
}

.attech-file label span {
    margin-right: 10px;
}

.celebration-content-box h2 {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.celebration-content-box p {
    font-size: 30px;
    font-weight: 500;
    padding-top: 10px;
}

.celebration-box {
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 12px;
    padding: 15px;
}

.content-c-blue {
    color: #63A3E3;
}

.content-c-green {
    color: #9ABF00;
}

.content-c-orange {
    color: #FDDF93;
}

.content-c-red {
    color: #F40505;
}

.button-group .allocated-budget {
    color: #054102;
}

.total-submission-box {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 10px 20px;
}

.submission-content-box {
    font-size: 17px;
    color: #000000;
}

.submission-number-box {
    font-size: 26px;
    color: #000000;
}

.submission-content-box span {
    opacity: 50%;
    margin-left: 15px;
    font-weight: 600;
}

.allocated-budget-red-bg {
    background-color: #FF8484 !important;
    color: #fff !important;
}
.allocated-budget-red-bg img {
    filter: brightness(0) invert(1);
}
.allocated-modal .input-box {
    box-shadow: inset 0px 3px 6px #00000029;
    border: 1px solid #98A3A4;
    border-radius: 50px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    padding: 5px 20px;
}

.allocated-modal .input-box .input-box-field input {
    border: none;
    background-color: transparent;
    color: #000000;
    font-size: 26px;
    width: 100%;
    font-weight: 500;
}

.allocated-modal .input-box-title {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    padding-right: 20px;
}

.allocated-modal .input-box .input-box-field input:focus {
    outline: unset;
    box-shadow: unset;
}

.allocated-modal .content {
    color: #F40505;
    font-size: 26px;
    font-weight: bold;
}

/*setting page styling*/
.setting-btn-grp {
    padding: 20px 0px;
}

.setting-btn-grp .btn {
    box-shadow: 0px 3px 6px #00000012;
    border-radius: 32px;
    background-color: #fff;
    padding: 17px 20px;

}

.setting-btn-grp .btn span {
    color: #000000;
    font-size: 29px;
    font-weight: 500;
    opacity: 50%;
}

.setting-list {
    border-radius: 21px;
    background-color: #fff;
    padding: 10px 20px;
}

.setting-list th {
    font-size: 19px;
    color: #707070;
    font-weight: 400;
    padding: 10px;
}

.setting-list tbody tr {
    border-bottom: 1px solid #707070;
}

.setting-list td {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
}


.setting-list .form-check-input {
    position: relative;
    margin-left: 0;
}

.setting-list .switch-box .form-switch {
    padding-left: 0;
}

.switch-box .form-check-input:not(checked) {
    border: 1px solid #707070;
    background-color: #707070;
}

.form-switch .form-check-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/*create admin-page styling/*/
.admin-form-modal .modal-footer .btn {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    background-color: #fff;
}

.admin-form-modal .modal-footer .btn-cancle {
    border: 1px solid #fff;
    color: #F40505;
    max-width: 160px;
    width: 100%;
}

.admin-form-modal .modal-footer .btn-cancle:hover {
    border: 1px solid #F40505;
    background-color: #F40505;
}

.admin-form-box .form-group {
    display: flex;
    background-color: #FAFAFA;
    box-shadow: inset 0px 3px 6px #00000029;
    border-radius: 22px;
    align-items: center;
    padding: 5px 20px;
    margin: 40px 0px;
}

.admin-form-box .form-control {
    border: none;
    background-color: transparent;
    padding-left: 20px;
    color: #707070;
    font-size: 18px;
}

.admin-form-box h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.admin-form-box .select-box {
    margin: 40px 0px;
}

.setting-activity-list {
    padding: 10px 50px;
}

.setting-activity-list tbody tr {
    border-top: none;
}

.setting-policy .content {
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    padding: 18px 0px;
}

/*notification list styling*/
.notification-list {
    box-shadow: 0px 3px 6px #00000029;
    border: none;
    background-color: #fff;
    border-radius: 52px;
    padding: 25px;
    top: 65px;
    right: -55px !important;
    max-width: 350px;
    min-width: 350px;
    width: 100%;
}

.notification-list:after {
    content: '';
    position: absolute;
    padding: 14px;
    top: -11px;
    transform: rotate(-50deg);
    right: 55px;
    background-color: #fff;
    z-index: -999;
}

.notification-content {
    flex-grow: 1;
}


.notification-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FAFAFA;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-innerlist.active {
    background-color: #FCDE92;
    padding: 5px;
    border-radius: 12px;
}

.notification-head-box .head {
    color: #000000;
    font-size: 12px;
    font-weight: bold;
}

.notification-head-box .content {
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
}

.notification-content-head .head {
    font-weight: 500;
    color: #000000;
    font-size: 14px;
}

.notification-content-head .content {
    font-size: 10px;
    color: #707070;
}

.notification-content .content {
    font-size: 12px;
    color: #707070;
}

/*setting account detail pages*/
.account-details-profile {
    padding-bottom: 53px;
}

.account-innerprofile {
    max-width: 182px;
    width: 100%;
    height: 182px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 15px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-innerprofile .profile-image {
    max-width: 160px;
    width: 100%;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
}

.account-innerprofile .profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-innerprofile .camera-icon input {
    width: 0;
    height: 0;
    visibility: hidden;
}

.account-innerprofile .camera-icon {
    margin: 0;
    max-width: 50px;
    height: 50px;
    width: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    bottom: 20px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.account-innerprofile .camera-icon img {
    width: 22px;
}

.account-details-content {
    background-color: #FFFFFF;
    border-radius: 25px;
    padding: 20px;
}

.account-details-content .form-label {
    font-size: 22px;
    color: #98A3A4;
    font-weight: 400 !important;
    margin-bottom: 10px;
    padding: 0px 20px;
}

.account-details-content .form-control {
    font-size: 29px;
    color: #000000;
    font-weight: 500;
    border: none;
    padding: 0px 20px;
}


.account-details-content .form-group {
    margin-bottom: 30px;
}

.policy-page-btn .btn img {
    margin-left: 0;
    margin-right: 5px;
}

.policy-page-btn .btn {
    color: #000;
}

.form-group-box .edit-img {
    width: 25px;
}

.account-details-content .form-control::placeholder {
    color: #000;
}

/*home-report page styling*/
.report-address {
    color: #504D4D;
    font-size: 22px;
    /*opacity: 50%;*/
    max-width: 400px;
    width: 100%;
}

.report-button-group .btn {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    background-color: #fff;
    font-size: 18px;
}

.report-button-group img {
    margin-right: 10px;
    max-width: 20px;
    width: 100%;
}

.report-button-group .btn+.btn {
    margin-left: 15px;
}

.graph-field {
    box-shadow: 0px 5px 11px #00000024;
    border-radius: 17px;
    background-color: #fff;
}

.graph-content-field {
    background-color: #FFFFFF;
}

.graph-content-field tr th,
.graph-content-field tr td {
    font-size: 14px;
    color: #504D4D;
    font-weight: 400;
    padding: 5px 10px 5px 15px;
}

.graph-content-field thead tr {
    border: 1px solid #008996;
}

.report-modal .report-address {
    text-align: left;
    padding: 20px;
}

.report-modal .modal-dialog {
    max-width: 800px;
}

/*invitation page styling*/
.day-field {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 29px;
    padding: 10px;
    background-color: #fff;
    margin: 0px 20px 0px 45px;
}

.day-field .day {
    color: #054102;
    font-size: 20px;
    font-weight: 500;
}

.day-field .day.active {
    background-color: #9ABF00;
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 8px;
}

.select-date input {
    border: none;
    background-color: transparent;
    width: 100%;
    font-size: 22px;
    color: #504D4D;
    opacity: 50%;
}

.select-date input:focus-visible {
    outline: unset;
}

.select-date {
    background-color: #fff;
    box-shadow: inset 0px 3px 6px #00000029;
    border-radius: 53px;
    padding: 10px 20px;
    margin-left: 20px;
}

.ver-line {
    border-right: 1px solid #707070;
    height: 50px;
    margin: 0px 20px 0px 10px;
}

/*.select-date input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}*/
.invitation-list-box .view {
    display: inline-flex;
    font-size: 26px;
    color: #98A3A4;
    max-width: 190px;
    width: 100%;
    align-items: center;
}

.invitation-list-box .img {
    max-width: 33px;
    width: 100%;
    height: 33px;
    background-color: #FAFAFA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.invitation-list-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 20px;

}

.invitation-list-view {
    width: 50%;
}

.invitation-list-box .img img {
    width: 15px;
}

.select-date .calender-icon {
    position: absolute;
    right: 18px;
    top: 13px;
    cursor: pointer;
    pointer-events: none;
}

/*feedback page styling*/
.app-feedback-innerbox .feedback-profile {
    max-width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.app-feedback-innerbox {
    background-color: #FDFFFF;
    border-radius: 21px;
    padding: 10px 40px 10px 20px;
}

.app-feedback-innerbox .feedback-profile-content {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.app-feedback-innerbox .app-feedback-leftinnerbox {
    width: 50%;
}

.app-feedback-innerbox .app-feedback-rightinnerbox {
    width: 50%;
}

.app-feedback-innerbox .app-feedback-rightinnerbox .content {
    font-size: 20px;
    color: #707070;
    padding-right: 15px;
}
.app-feedback-innerbox .app-feedback-rightinnerbox a {
    flex-grow: 1;
}
.app-feedback-innerbox .app-feedback-rightinnerbox a .img {
    width: 10px;
    margin-left: auto;
}


.app-feedback-innerbox .app-feedback-rightinnerbox .content span {
    color: #63A3E3;
    padding-left: 5px;
}

/*feedback reply styling*/
.feedback-reply-box {
    background-color: #FDFFFF;
    padding: 23px;
    border-radius: 26px;
}

.delete-img-box {
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.back {
    color: #98A3A4;
    font-size: 22px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

/*forum page styling*/

.forum-button-group .btn {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    height: 44px;
    min-width: 162px;
    justify-content: center;
    font-size: 18px;
    color: #63A3E3;
}

.forum-button-group .btn img {
    margin-right: 5px;
}

.forum-button-group .btn+.btn {
    margin-left: 20px;
}

.forum-button-group .btn.active {
    background-color: #63A3E3;
    color: #fff;
    box-shadow: 0px 3px 6px #00000029 !important;
}

.forum-select-innerbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.forum-select-innerbox label {
    position: relative;
    cursor: pointer;
}

.forum-select-innerbox label:before {
    content: '';
    -webkit-appearance: none;
    border: 1px solid #707070;
    border-radius: 10px;
    background-color: #fff;
    width: 35px;
    height: 31px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
   left: -45px;
   top: 0px;
}

.forum-select-innerbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: -33px;
    width: 10px;
    height: 15px;
    border: solid #00BF59;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.forum-select-innerbox .form-label {
    background-color: #fff;
    font-weight: 400 !important;
    border-radius: 23px;
    width: 100%;
    display: inline-flex;
    position: relative;
    padding: 15px 20px;
    flex-direction: column;
}
.read-more {
    color: #63A3E3;
    font-size: 16px;
    font-weight: bold;
    padding-left: 10px;
}
.forum-select-innerbox {
    padding-left: 45px;
}
.forum-select-innerbox .form-label .img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.forum-select-innerbox .form-label .yellow-bg {
    background-color: #FFF8E8;
}
.forum-select-innerbox .form-label .sub-title {
    font-size: 14px;
    display: inline-block;
    color: #98A3A4;
       max-width: 120px;
    width: 100%;
}

.forum-select-innerbox .form-label .sub-head {
    font-size: 16px;
    color: #000000;
    width: 60%;
}
.light-green-bg {
    background-color: #DDFFDB;
}

.purple-bg {
    background-color: #EBE8FF;
}

.orange-bg {
    background-color: #FFD6D6;
}
.forum-select-innerbox .form-label .date-show {
    color: #008996;
    font-size: 16px;
}
.forum-select-content{
    display: flex;
    align-items: baseline;
    flex-grow: 1;
}
.forum-select-content .head-box{
    flex-grow: 1;
}
.social-icon-box {
    max-width: 650px;
    width: 100%;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
        margin: 40px 0px 20px;
}
.back img {
    margin-right: 14px;
}
.social-icon li {
    width: 75px;
    height: 75px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 3px 6px #00000029;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon li + li {
    margin-left: 30px;
}
.reply-via-box {
      border-bottom: 1px solid #707070;
      position: relative;
    margin: 20px 0px;
}
.reply-via-box .head {
    font-size: 26px;
    font-weight: 500;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0px 12px;
  
}

.download-image-box {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 19px;
    max-width: 500px;
    width: 100%;
    padding: 15px;
    margin: 30px 0px 35px;
}

.download-image-box .download-image {
    width: 70px;
    height: 120px;
}

.download-image-box .download-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-image-box .download-icon {
    width: 45px;
    height: 45px;
}

.download-image-box .download-icon img {
    width: 100%;
    height: 100%;
}


.feedback-box .head {
    font-size: 28px;
    color: #000000;
    font-weight: 500;
}

.feedback-box .feedback-detail {
    flex-grow: 1;
    margin-left: 20px;
}

.feedback-box .title {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.feedback-box .content {
    font-size: 26px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    padding: 10px 0px;
}
.feedback-box {
    padding: 10px 0px 30px;
}


.forum-select-innerbox .form-label .numer {
    color: #fff;
    background-color: #F40505;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.btn-navbar {
    background-color: #FDDF93;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    overflow: hidden;
    opacity: 40%;
    right: 7px;
    top: 4px;
}

/*market notification page styling*/

.marketing-notification .table thead th {
    border-top: none;
    border-bottom: none;
}

.marketing-notification .table td {
    border-top: none;
    border-bottom: none;
    color: #054102;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
}

.marketing-notification {
    background-color: #fff;
    border-radius: 10px;
}

.marketing-notification thead th {
    color: #98A3A4;
    font-weight: 400 !important;
    font-size: 20px;
}

.marketing-notification .table tr {
    border-bottom: 1px solid #70707021;
}

.push-notification-btn {
    background-color: #63A3E3;
    border-radius: 30px;
    max-width: 360px;
    width: 100%;
    margin-left: auto;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
}

.push-notification-btn p {
    font-weight: 500;
    color: #FFFFFF;
    font-size: 24px;
    margin-right: 15px;
}

.schedule-box input[type="date"]::-webkit-inner-spin-button,
.schedule-box input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
-webkit-appearance: none;
}

.schedule-box .select-box{
    justify-content: unset;
}

.schedule-box .calender-icon {
    margin-right: 20px;
}

/*indidual claim page styling*/

.individual-innerimage-field p {
    color: #4A4A4A;
    font-size: 20px;
    font-weight: bold;
    max-width: 600px;
    width: 100%;
}
.individual-innerimage-field p span {
    color: #F40505;
}

.individual-innerimage-field .btn {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 22px;
    color: #054102;
    font-size: 18px;
    max-width: 169px;
    width: 100%;
    height: 44px;
}

.individual-image-field {
    padding: 17px 0px;
}

.uploadFile .file {
    visibility: hidden;
    width: 0;
    height: 0;
}

.uploadFile label {
    font-weight: 400;
    margin-bottom: 0;
    margin-left: 10px;
}

.individual-redeem-text-field {
    box-shadow: inset 0px 3px 6px #00000029;
    border-radius: 50px;
    background-color: #fff;
    max-width: 310px;
    width: 100%;
    margin-right: 25px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.individual-redeem-text-field input {
    border: none;
    background-color: transparent;
    color: #000000;
    font-size: 18px;
    opacity: 50%;
    font-weight: 500;
}

.individual-redeem-text-field input:focus-visible {
    outline: none;
}

.individual-redeem-text-field img {
    margin-right: 13px;
}

.individual-redeem-field {
    align-items: center;
    padding: 20px 0px;
    flex-wrap: wrap;
}

.individual-redeem-field p {
    font-size: 20px;
    color: #000000;
    opacity: 50%;
    font-weight: 500;
    margin-right: 30px;
}


.individual-user {
    display: inline-flex;
    align-items: center;
    border-radius: 13px;
    background-color: #FFFFFF;
    justify-content: center;
    padding: 10px 20px;
        flex-wrap: wrap;
}
.individual-user2 {
    margin-left: 100px;
}
.individual-user-detail {
    padding: 25px 0px 50px;
}
.individual-user p {
    font-size: 18px;
    color: #000000;
    opacity: 40%;
    font-weight: 500;
}

.individual-user img {
    margin-right: 10px;
    width: 25px;
}

.total-individual-box {
    background-color: #FFFFFF;
    border-radius: 13px;
    padding: 10px 30px 10px 10px;
}

.individual-content-box {
    font-size: 20px;
    color: #4A4A4A;
}

.individual-number-box {
    font-size: 20px;
    color: #4A4A4A;
    font-weight: bold;
}
.total-individual-reward {
    padding: 20px 0px 27px;
}
.save-add-btn {
    color: #00BF59;
    font-weight: 500;
}
.save-btn-bg-green {
    background-color: #00BF59 !important;
    color: #fff;
}

.graph-innerContent {
    background-color: #FFFFFF;
    box-shadow: 0px 5px 11px #00000024;
    border-radius: 17px;
}

/*alert danger msg*/
.alert-box{
    padding: 10px;
    margin: 20px 0px;
    position: relative;
}

.alert-box .close {
    position: absolute;
    right: 25px;
    border: none;
}

.select2box .select2.select2-container.select2-container--default.select2-container--above {
    display: block;
}

.select2box .select2-selection.select2-selection--single {
    height: 100%;
    padding: 8px 16px 8px 10px;
}

.select2box .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 23px;
    padding: 0;
}

.select2box .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
    top:5px;
}

/*invitation map page styling*/

.invitation-map-section {
    background-color: #fff;
    border-radius: 10px;
    padding-top: 12px;
}

.invitation-map-content .head {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 15px 0px;
}

.invitation-map-innercontent {
    padding: 15px;
    box-shadow: 0px 5px 25px #0000001A;
    border-radius: 20px;
    margin: 15px 0px;
    height: 450px;
    overflow: scroll;
}

.invitation-profile-box .profile-image img {
    max-width: 32px;
    height: 32px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
 
}

.invitation-profile-box .profile-image .name {
    font-size: 12px;
    color: #054102;
    font-weight: 500;
    padding: 5px 0px 1px;
}

.invitation-profile-box {
    padding: 15px 15px 7px;
}

.invitation-profile-box .profile-image {
    text-align: center;
}
.invitation-map-innercontent .content {
    color: #63A3E3;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 5px 0px;
}

.invitation-map-innercontent .hr-line {
    border-bottom: 1px solid #707070;
    position: relative;
    margin: 5px 0px 15px;
}

.invitation-map-innercontent .hr-line img {
    position: absolute;
    bottom: -8px;
    left: -1px;
}

.invitation-list-box .view.active .img {
    background-image: linear-gradient(180deg, #054102, #1DAE16);
}

.invitation-list-box .view.active .img img {
    filter: brightness(0) invert(1);
}

.invitation-list-box .view.active {
    color: #000;
    font-weight: bold;
}
.create-notification-box .box2 .form-select .select2.select2-container.select2-container--default {
    height: 100%;
    width: 100%!important;
}

.create-notification-box .box2::-webkit-scrollbar {
    display: none;
}

.create-notification-box .box2 {
    /*max-width: 300px;*/
    max-width: 450px;
    width: 100%;
    height: 43px;
    overflow-y: auto;
}


.feedback-reply-box .feedback-profile {

    width: 100%;
    height: 60px;
    max-width: 60px;
}

.feedback-reply-box .feedback-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.eye-btn-style {
    position: absolute;
    bottom: 11px;
    right: 20px;
    background-image: url(../images/eye-close.svg);
    height: 13px;
    width: 22px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.eye-button {
    background-image: url(../images/eye-open.svg);
}