@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: url(../img/admin-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #333333;
}

a:hover {
    text-decoration: none;
}

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

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, .5);
    display: block;
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}



/* log-in-page-start */
.log-in-area {
    height: 100vh;
    background: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.log-in-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 900px;
}

.log-in-right {
    text-align: center;
    width: 400px;
}

.log-in-right img {
    display: inline-block;
    width: 300px;
    margin-bottom: 20px;
}

.log-in-right h1 {
    color: #4797E7;
    font-weight: 700;
    font-size: 20px;
}

.email-area {
    display: flex;
    border: 1px solid #E5E5E5;
}

.log-in-icon {
    display: inline-block;
    background: #F4F4F4;
    padding: 15px 15px;
    border-right: 1px solid #E5E5E5;
}

.log-in-icon img {
    display: inline-block;
    width: 20px;
    margin-bottom: 0;
}

.email-input input {
    width: 100%;
    border: none;
    padding: 15px 15px;
    color: #1A1A1A;
    font-size: 16px;
    outline: none;
}

.email-input {
    width: 100%;
}

.email-input input::placeholder {
    color: #1A1A1A;
    font-size: 16px;
    opacity: 1;
}

.pass-icon img {
    width: 15px;
}

.pass-icon {
    padding: 15px 17.5px;
}

.pass-area {
    margin-top: 20px;
}

.log-in-form form {
    margin-top: 35px;
}

.log-in-form form button {
    display: inline-block;
    width: 100%;
    background: #4797E7;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    padding: 15px 0px;
    border: 1px solid #4797E7;
    margin-top: 25px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.log-in-form form button:hover {
    opacity: .7;
}

.log-in-left img {
    display: inline-block;
    width: 100%;
}

/* log-in-page-end */


/* mannage-admin-page-start */


/* -- header-area-start -- */

.dropdown-toggle::after {
    display: none;
}

.header-area {
    padding: 25px 25px;
    box-shadow: 0px 0px 7px #0000003b;
    z-index: 111;
    position: relative;
    background: #fff;
}

.header-area-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a img {
    display: inline-block;
    width: 240px;
}

.dropdown button {

    background: none;
    border: none;
    color: #000;
    outline: none;
}

.dropdown-menu {
    margin: 15px -20px;
    border: none;
    border-radius: 9px;
    box-shadow: 0px 0px 7px #0000003b;
    padding: 10px 10px;
}

.dropdown-menu li a {
    display: inline-block;
    color: #333333;
}

.dropdown-menu.show::after {
    content: "";
    position: absolute;
    right: 20px;
    top: -8px;
    width: 14px;
    height: 10px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    box-shadow: 0px 0px 7px #0000003b;
}

/* -- header-area-end -- */


/* -- mannage-admin-area-start -- */
#mannage-btn {
    flex: 0 0 300px;
    max-width: 300px;
    padding-left: 15px;
    padding-right: 0;
    overflow: hidden;
}

#mannage-table {
    padding-left: 0;
    padding-right: 15px;
    flex: 0 0 calc(100% - 300px);
    max-width: calc(100% - 300px);
    overflow: hidden;
}

.mannage-btn-area {
    background: #2676BC;
    height: 100%;
}

.mannage-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    overflow: hidden;
}


.mannage-btn-area ul li {
    padding: 20px 10px;
    border-bottom: 3px solid #2676BC;
    background: #2571B5;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.mannage-btn-area ul li:hover {
    background: #4798E8;
}

.mannage-btn-area ul li.active {
    background: #4798E8;
}

.mannage-btn-area ul li a {
    display: inline-block;
    color: #fff;
    font-size: 15px;
}

.mannage-btn-area ul li a span {
    display: inline-block;
    width: 40px;
    text-align: center;
}

.mannage-btn-area ul li a span img {
    display: inline-block;
    margin-right: auto;
}

.mannage-table-area {
    background: url(../img/admin-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.mannage-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.mannage-top-title h1 {
    font-weight: 700;
    color: #4798E8;
    font-size: 25px;
    margin-bottom: 0;
}

.search-box {
    display: flex;
}

.search-box input {
    width: 100%;
    border: none;
    padding: 15px 15px;
    color: #B3B3B3;
    font-size: 16px;
    outline: none;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #E8E9EA;
}

.search-box input::placeholder {
    opacity: 1;
}

.search-box button {
    display: inline-block;
    background: #4797E7;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0px;
    border: 1px solid #4797E7;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    width: 150px;
    border-radius: 10px;
    margin-left: 20px;
}

.mannage-top-right form {
    width: 100%;
}

.search-box button:hover {
    opacity: .7;
}

.mannage-table {
    overflow-x: auto;
    margin-top: 20px;
    overflow-y: hidden;
    padding-bottom: 40px;
}

.mannage-table table {
    margin: 0;
    border-collapse: collapse;
    width: 100%;
    table-layout: auto;
}


.mannage-table table tr {
    border-bottom: 1px solid #E6E9FA;
}

.mannage-table table tr td input {
    background: transparent;
    outline: none;
    border: 0;
    width: 120px;
}

.mannage-table th,
td {
    box-sizing: border-box;
    padding: 20px 20px;
    color: #000;
    font-size: 13px;
}


.mannage-table th {
    cursor: pointer;
    padding: 8px 20px;
    position: relative;
    font-size: 14px;
}

.mannage-table th::after {
    content: "\f0dc";
    font-family: FontAwesome;
    font-size: 13px;
    color: #999999;
    /*float: left;*/
    padding-top: 4px;
    /*position: absolute;
    top: 6px;*/
    margin-left: 15px;
    margin-left: 7px;
}

#remove-icon::after {
    display: none;
}

.mannage-table th.asc::after {
    content: "\f0de";
    font-family: FontAwesome;
    color: #999999;
}

.mannage-table th.desc::after {
    content: "\f0dd";
    font-family: FontAwesome;
    color: #999999;

}

.delete {
    text-align: center;
}

.sm-humberger {
    cursor: pointer;
    margin-left: 15px;
    display: none;
}

.sm-humberger span {
    display: block;
    width: 30px;
    height: 4px;
    background: #000;
    margin-top: 5px;

}

.header-right {
    display: flex;
    align-items: center;
}

.sm-close {
    display: none;
    text-align: right;
    cursor: pointer;
    padding: 10px 15px;
}

.sm-close i {
    display: inline-block;
    font-size: 30px;
    color: #fff;
}

.text-middle {
    text-align: center;
}

#fname {
    background-size: 20px;
    border-width: 90px;
    border-bottom: 1px solid #808080;
}


#pass-valid {
    background-size: 20px;
    border-bottom: 1px solid #808080;
}


.roll-pop-up .crb-area {
    display: inline-block;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #E8E9EA;
    padding: 8px 31px 8px 15px;
    border-radius: 10px;
    color: #000000;
    margin-right: 10px;
}


.roll-pop-up .crb-area input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.roll-pop-up .checkmark {
    position: absolute;
    top: 9px;
    right: 6px;
    height: 25px;
    width: 25px;

}


.roll-pop-up .crb-area:hover input~.checkmark {
    background: url(../img/valid.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 20px;
}


.roll-pop-up .crb-area input:checked~.checkmark {
    background: url(../img/valid.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 20px;
    z-index: 999;
}

.roll-pop-up .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.roll-pop-up .crb-area input:checked~.checkmark:after {
    display: block;
}

.roll-btn {
    text-align: center;
    margin-top: 15px;
}

.roll-btn button {
    background: #4798E8;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: 0;
    outline: none;
    padding: 7px 15px;
    border-radius: 10px;
}

.roll-pop-up {
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    max-width: 321px;
    box-shadow: 0px 0px 7px #0000003b;
    position: absolute;
    left: 18px;
    top: 52px;
    width: 350px;
    z-index: 999999;
}

.roll-pop-up::after {
    content: "";
    position: absolute;
    left: 30px;
    top: -8px;
    width: 15px;
    height: 10px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    box-shadow: 0px 0px 7px #0000003b;
}

.mannage-table table td#role {
    position: relative;
}

/* -- mannage-admin-area-end -- */


/* mannage-user-page-start */

.user-table th {
    cursor: pointer;
    padding: 8px 10px !important;
    position: relative;
    font-size: 13px;
}

.user-table td {
    padding: 20px 10px !important;
    font-size: 13px;
}

.user-table td a#preview img {
    display: inline-block;
    width: 18px;
    margin-right: 10px;
}


.user-table td a#rem-del img {
    display: inline-block;
    width: 10px;
}

.mannage-user-area {
    height: inherit;
}

.user-btn-area {
    height: 100% !important;
}

.user-table {
    padding-bottom: 0;
}

.pagination-area {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: right;
    padding-right: 10px;
}

.pagination-area ul li {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50%;
}

.pagination-area ul li:last-child {
    margin-right: 0;
}

.pagination-area ul li a {
    display: inline-block;
    color: #000;
    font-size: 16px;
}

.pagination-area ul li a img {
    display: inline-block;
    width: 32px;
}

.pagination-area ul li.active {
    background: #4798E8;
}

.pagination-area ul li.active a {
    color: #fff;
}

/* mannage-user-page-end */

/* user-details-page start */
.mannage-top-right p {
    font-size: 14px;
    margin-bottom: 0;
}

.details-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 20px;
}

.summery-statistics {
    padding: 25px 20px 25px 20px;
}

.summery-statistics h4 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.summary-box {
    background: #fff;
    padding: 30px 0px 30px 0px;
    text-align: center;
    box-shadow: 0px 0px 7px #0000003b;
    border-radius: 15px;
}

.summary-box h2 {
    margin-bottom: 0;
    color: #4798E8;
    font-size: 25px;
    font-family: 'Lato', sans-serif;
}

.summary-box P {
    margin-bottom: 0;
    color: #000;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
}

.summary-box-area .col-lg-2 {
    padding-right: 10px;
    padding-left: 10px;
}

.summary-box-area {
    margin-top: 15px;
}

.profile-area-wrapper {
    padding: 0px 20px;
    margin-top: 25px;
}

.profile-area-details-wrapper {
    background: #fff;
    box-shadow: 0px 0px 7px #0000003b;
    border-radius: 15px;
    overflow: hidden;
}

.profile-area-details-wrapper h1 {
    color: #fff;
    font-size: 20px;
    background: #4798E8;
    padding: 15px 20px 10px 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.mannage-table-area.mannage-user-details {
    height: inherit;
    padding-bottom: 50px;
}

.user-table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 5px;
}

.user-table-wrapper table {
    margin: 0;
    border-collapse: collapse;
    table-layout: auto;
}


.user-table-wrapper table td {
    box-sizing: border-box;
    padding: 10px 14px;
    color: #000;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
}

.user-table-wrapper table td#user-details-td {
    font-weight: 700;
}

.plan-pop-up {
    background: #fff;
    border-radius: 10px;
    padding: 8px 0px 5px 3px;
    width: 276px;
    box-shadow: 0px 0px 7px #0000003b;
    position: absolute;
    right: -242px;
    bottom: -47px;
    z-index: 999999;
}

.plan-pop-up .crb-area {
    display: inline-block;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #E8E9EA;
    padding: 8px 25px 8px 7px;
    border-radius: 10px;
    color: #000000;
    margin-right: 5px;
    margin-left: 5px;
}


.plan-pop-up .crb-area input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.plan-pop-up .checkmark {
    position: absolute;
    top: 4px;
    right: 6px;
    height: 25px;
    width: 25px;

}


.plan-pop-up .crb-area:hover input~.checkmark {
    background: url(../img/valid.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 14px;
}


.plan-pop-up .crb-area input:checked~.checkmark {
    background: url(../img/valid.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 14px;
    z-index: 999;
}

.plan-pop-up .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.plan-pop-up .crb-area input:checked~.checkmark:after {
    display: block;
}

.plan-btn {
    text-align: center;
    margin-top: 10px;
}

.plan-btn button {
    background: #4798E8;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: 0;
    outline: none;
    padding: 2px 15px;
    border-radius: 10px;
}

.plan-pop-up::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 11px;
    width: 11px;
    height: 11px;
    -webkit-clip-path: polygon(100% 100%, 0 50%, 100% 0);
    clip-path: polygon(100% 100%, 0 50%, 100% 0);
    background: #fff;
    box-shadow: 0px 0px 8px #f2c202;
    z-index: 999999999999999999999999;
}

.user-table-wrapper table td#plan {
    position: relative;
    cursor: pointer;
}

.user-table td a#act-edit img {
    display: inline-block;
    width: 14px;
    margin-right: 10px;
}

/* user-details-page end */


/* mannage-dialogues-details-page-start */
.acc-container {
    width: 100%;
}

.acc {
    margin-bottom: 10px;
}

.acc-head {
    background-color: #2D2F3B;
    padding: 15px 20px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
}

.acc-head::before,
.acc-head::after {
    content: '';
    position: absolute;
    top: 50%;
    background-color: #fff;
    transition: all .3s;
}

.acc-head::before {
    right: 30px;
    width: 3px;
    height: 20px;
    margin-top: -10px;
}

.acc-head::after {
    right: 21px;
    width: 21px;
    height: 3px;
    margin-top: -2px;
}

.acc-head p {
    color: #fff;
    font-weight: bold;
    margin-bottom: 0;
}

.acc-content {
    display: none;
    background: #fff;
    border-radius: 5px 5px 15px 15px;
    box-shadow: 0px 0px 7px #0000003b;
}

.acc-head.active::before {
    transform: rotate(90deg);
}

.dailogues-details-right {
    padding: 0px 20px;
}

.acc-content ul li .acc-content-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-content ul li .acc-content-details P {
    margin-bottom: 0;
    color: #000;

    font-size: 14px;
}

.acc-content ul li {
    padding: 12px 20px;
    border-bottom: 1px solid #F7F8FF;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.acc-content ul li:hover .acc-content-details P {
    color: #4798E8;
}

.acc-content ul li:hover .acc-content-details span img {
    opacity: 1;
}

.acc-content ul li:last-child {
    border-bottom: none;
}

.acc-content-details span img {
    display: inline-block;
    width: 18px;
    opacity: 0;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.question-wrapper {
    padding: 10px 20px;
}


.question-wrapper p {
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
}

.question-area {
    margin-top: 25px;
}

.mannage-dial-details {
    height: inherit;
    padding-bottom: 80px;
}

.user-table-wrapper table td input#dialouge-title {
    border: 0;
    background-size: 20px;
    border-bottom: 1px solid #808080;
    background-color: transparent;
    outline: none;
    width: 180px;
}


/* mannage-dialogues-details-page-end */


/* mannage-dialogues-delete-page-start  */

.delete-dial table tr td input {
    background: transparent;
    outline: none;
    border: 0;
    width: 30px !important;
}

.delete-dial table tr th input {
    background: transparent;
    outline: none;
    border: 0;
    width: 30px !important;
}

.del-btn {
    padding: 0px 20px;
}

.del-btn a {
    display: inline-block;
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 14px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.del-btn a:hover {
    opacity: .7;
}

/* mannage-dialogues-delete-page-end */


/* plan-details page start */


.plan-details-area {
    background: #fff;
    max-width: 650px;
    margin: 0px 20px;
    padding: 10px 5px 5px 5px;
    border-radius: 15px;
    box-shadow: 0px 0px 7px #0000003b;
}


.plan-details-table table td input#dialouge-title {
    width: 60px;
}

#unlimited {
    margin-left: 50px;
    margin-right: 15px;
}

.bginput {
    background: url(../img/valid.png)!important;
    background-repeat: no-repeat!important;
    background-position: right!important;
    background-size: 20px!important;
}

.mannage-table table tr td input::placeholder {
    opacity: 1;
}

.user-table-wrapper table td input#dialouge-title {
    border: 0;
    background-size: 20px;
    border-bottom: 1px solid #808080;
    background-color: transparent;
    outline: none;
    width: 180px;
}

.user-table-wrapper table td input#dialouge-title::placeholder {
    opacity: 1;
}

/* plan-details page end */
