/*
Theme Name: FASTER
*/

.pointer {
    cursor: pointer;
}

*,
*:active,
*:focus,
option:focus {
    outline: none !important;
    box-sizing: border-box;
}

:root {
    --poppins: 'Poppins', sans-serif;
    --MadeTommy-XBold: 'MADETOMMY-ExtraBold';
    --primary-color: #03c2ad;
    --color-dark: #1b1d26;
    --color-light-dark: #2e2e2e;
    --color-navy-blue: #0a0738;
    --color-light-purple: #9396ac;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #c1c1c1;
    --color-orange: #f5585c;
    --color-yellow: #fab941;
}

body {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin: 0 auto;
    position: relative;
    color: var(--color-dark);
    background: #f7f7f7;
}

button::-moz-focus-inner {
    border: 0;
}

img {
    border: none;
    max-width: 100%;
    display: block;
    height: auto;
}
a:focus,
a:active,
a:hover,
a {
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
}
a {
    color: var(--color-light-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px;
    line-height: normal;
    font-weight: bold;
}
h1,
h2 {
    font-weight: 700;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    margin: 0 0 10px;
    font-weight: 300;
}
h1 {
    margin: 0 0 20px;
}
.left {
    float: left;
}
.right {
    float: right;
}
.clear {
    clear: both;
}

.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.align-left {
    text-align: left;
}
.upper-case {
    text-transform: uppercase;
}

h3 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 20px;
}
.hide-mobile {
    display: block !important;
}
.hide-desktop {
    display: none !important;
}
.main-container {
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
}
.main-content {
    max-width: 1450px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.faster-logo-bg {
    position: relative;
}
.faster-logo-bg::before {
    position: absolute;
    content: '';
    background: url(images/body-bg.png) no-repeat left top;
    background-size: contain !important;
    z-index: -1;
    max-width: 815px;
    width: 40%;
    max-height: 100%;
    height: 850px;
    left: 0%;
}

/*================= Header =======================*/

.th-toggle-btn:hover + .h-user-dropdown {
    /* height: 150px;
	 */
    display: block;
}

.click-toggle:hover + .h-user-dropdown {
    /* height: 150px;
	 */
    display: block;
}

.header-wrapper {
    background: var(--primary-color);
    color: var(--color-white);
    position: relative;
    padding: 15px 40px;
    min-height: 150px;
}
.h-logo {
    max-width: 230px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    flex-flow: row-reverse;
}
.header-sec {
    max-width: 390px;
    position: relative;
}
.top-searcbar {
    width: 37%;
}
.h-textbox::placeholder {
    opacity: 1;
    color: #111219;
}
.h-textbox {
    color: #111219;
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: bold;
    border: none;
    width: 100%;
    display: block;
    padding: 0 45px;
    height: 60px;
    border-radius: 6px;
    background: #ffffff;
}
.click-toggle {
    cursor: pointer;
}
.h-user-profile {
    display: flex;
    align-items: center;
}
.h-user-pic {
    background: #ffffff;
    border-radius: 100%;
    width: 95px;
    position: relative;
}
.h-user-pic img {
    max-width: 100%;
    border-radius: 100%;
    border: 4px solid var(--color-white);
}
.h-user-info svg.icon {
    right: 0;
}
.h-user-info {
    position: relative;
    padding: 0 40px 0 20px;
}
.h-user-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
}
.h-user-info p {
    font-weight: 500;
    margin: 0;
}
/* .h-user-dropdown{ background:var(--color-white); color:var(--color-dark); border-radius:4px; padding:15px; position:absolute; z-index:9; left:0; right:0; width:100%; top:115%; display:none; box-shadow: 0px 2px 7px rgba(0,0,0,0.1);} */

.h-user-dropdown:hover {
    display: block;
}
@keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

.h-user-dropdown {
    /* height: 0px; */
    animation: growDown 300ms ease-in-out forwards;

    transform-origin: top center;
    display: none;
    overflow: hidden;
    background: #fff;
    color: var(--color-dark);
    border-radius: 4px;
    padding: 15px;
    transition: 1s;
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    width: 100%;
    top: 102%;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
}

.h-user-dropdown ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.h-user-dropdown ul li {
    padding: 8px 0;
}
.h-user-dropdown ul li .icon,
.h-user-dropdown ul li img {
    width: 20px;
    height: 21px;
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
}
.h-user-dropdown ul li svg.icon {
    fill: var(--color-navy-blue);
    stroke: var(--color-navy-blue);
    transition: 0.3s;
    vertical-align: middle;
}
.h-user-dropdown ul li a {
    font-size: 16px;
    font-family: var(--poppins);
    font-weight: 400;
    color: var(--color-navy-blue);
}
.h-user-dropdown ul li a:hover {
    color: var(--primary-color);
}
.h-user-dropdown ul li.active-menu-item a svg.icon,
.h-user-dropdown ul li a:hover svg.icon {
    stroke: var(--primary-color);
    fill: var(--primary-color);
    transition: 0.3s;
}
.h-user-dropdown ul li.active-menu-item a {
    color: var(--primary-color);
}

.header-navigation {
    background: var(--color-white);
    color: #c1c1c1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0 25px;
    text-align: center;
}
.header-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.header-navigation ul li {
    position: relative;
}
.header-navigation ul li a {
    padding: 35px 35px;
    line-height: 25px;
    font-weight: 500;
    color: #c1c1c1;
    display: inline-block;
    font-size: 19px;
    position: relative;
    z-index: 2;
}
.header-navigation ul li.active-menu-item a,
.header-navigation ul li:hover a {
    color: var(--primary-color);
}
.header-navigation ul li a svg {
    width: 27px;
    height: 23px;
    vertical-align: top;
    margin-right: 11px;
    fill: #c1c1c1;
}
.header-navigation ul li.active-menu-item a svg,
.header-navigation ul li:hover a svg {
    fill: var(--primary-color);
}
.header-navigation ul li:hover::before,
.header-navigation ul li.active-menu-item::before {
    content: '';
    width: 36px;
    height: 42px;
    position: absolute;
    left: 35px;
    right: 0;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background: url(images/faster-icon.svg) no-repeat center center;
    background-size: 36px 42px !important;
    opacity: 0.12;
    z-index: 1;
}

.header-navigation ul li .icon-arrow-down {
    fill: #c1c1c1;
    width: 16px;
    height: 11px;
    right: 5px;
    top: 4px;
}
.header-navigation ul li.active-menu-item .icon-arrow-down,
.header-navigation ul li:hover .icon-arrow-down {
    fill: var(--primary-color);
}
.header-navigation ul li .open-dropdown-menu {
}

.header-navigation ul li.active-menu-item a svg.nav-icon6,
.header-navigation ul li.active-menu-item a svg.nav-icon4,
.header-navigation ul li a svg.nav-icon8,
.header-navigation ul li a svg.nav-icon4,
.header-navigation ul li a svg.nav-icon6 {
    stroke: #c1c1c1;
}

.header-navigation ul li.active-menu-item a svg.nav-icon6,
.header-navigation ul li.active-menu-item a svg.nav-icon8,
.header-navigation ul li a:hover svg.nav-icon8,
.header-navigation ul li a:hover svg.nav-icon4,
.header-navigation ul li a:hover svg.nav-icon6 {
    stroke: var(--primary-color);
}
.header-navigation ul li a svg.nav-icon9 {
    width: 22px;
    height: 15px;
    vertical-align: middle;
}
.header-navigation ul li a svg.nav-icon1 {
    width: 22px;
}
.header-navigation ul li a svg.nav-icon4 {
    width: 24px;
}

.header-navigation ul.dropdown-menu {
    display: none;
    position: absolute;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    z-index: 8;
    text-align: left;
    width: 230px;
    right: 0;
    top: 70px;
}
.header-navigation ul li:hover ul.dropdown-menu {
    display: block;
}
.header-navigation ul.dropdown-menu li {
    display: block;
}
.header-navigation ul.dropdown-menu li::before {
    display: none !important;
}
.header-navigation ul.dropdown-menu li a {
    padding: 6px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-navy-blue);
}
.header-navigation ul.dropdown-menu li.active-menu-item a {
    color: var(--primary-color);
}
.header-navigation ul.dropdown-menu li a:hover {
    color: var(--primary-color);
}
/*=============== Connexion =================*/
.content-area-wrapper {
    position: relative;
}
.box-shadow1 {
    box-shadow: 0 13px 26px rgba(176, 185, 196, 0.2);
}
.full-screen-height {
    min-height: 100vh;
}
.d-flex {
    display: flex;
    align-items: center;
}
.flex-column {
    flex-direction: column;
    justify-content: center;
    align-items: left;
}
.sm-content-block {
    max-width: 525px;
    width: 90%;
    padding: 40px 50px 60px;
    margin: 50px auto;
    border-radius: 7px;
}
.sm-content-block-w1 {
    max-width: 630px;
    margin: 20px auto;
    padding: 40px 50px;
}
.lg-white-bg {
    background: var(--color-white);
    color: var(--color-navy-blue);
}
.faster-logo {
    max-width: 234px;
    width: 84%;
    margin: 0px auto;
}
.adjust-logo-sm-con {
    margin: 15px auto 35px;
}
.form-control {
    margin: 0 0 25px;
    position: relative;
}
.th-textbox::placeholder {
    color: var(--color-light-purple);
    opacity: 1;
}
.th-textbox[type='password']::placeholder {
    color: var(--primary-color);
}
.th-textbox {
    width: 100%;
    height: 50px;
    background: #f3f5f7;
    padding: 0 25px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border: none;
    color: var(--color-light-dark);
}
.th-textbox[type='password'] {
    color: var(--primary-color);
}
.pad-right-icon .th-textbox {
    padding-right: 55px;
}
.pad-left-icon .th-textbox {
    padding-left: 55px;
}
.passwrod-icon {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 19px;
}
.forget-pass a {
    color: var(--color-light-purple);
    font-weight: 500;
    font-size: 15px;
}
.theme-btn:hover {
    color: #ffffff;
}
.box-shadow2 {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}
.box-shadow3 {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}
.theme-btn {
    background: var(--primary-color);
    color: #ffffff !important;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 13.5px 35px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: var(--poppins);
}
.text-shadow1 {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.theme-btn-gradient {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#01c2ad+0,3cdecc+100 */
    background: rgb(1, 194, 173); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(1, 194, 173, 1) 0%, rgba(60, 222, 204, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(1, 194, 173, 1) 0%, rgba(60, 222, 204, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(1, 194, 173, 1) 0%, rgba(60, 222, 204, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01c2ad', endColorstr='#3cdecc',GradientType=1 ); /* IE6-9 */
}
.theme-gradient-primary {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#01c2ad+0,3cdecc+100 */
    background: rgb(1, 194, 173); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(1, 194, 173, 1) 0%, rgba(60, 222, 204, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(1, 194, 173, 1) 0%, rgba(60, 222, 204, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(1, 194, 173, 1) 0%, rgba(60, 222, 204, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01c2ad', endColorstr='#3cdecc',GradientType=1 ); /* IE6-9 */
}
.connexion-path-wrapper {
    max-width: 425px;
    width: 25%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 2.5%;
    margin: auto;
}
.connexion-path {
    max-width: 425px;
    width: 100%;
    margin: 0 auto;
}
.connexion-path img {
    display: block;
    width: 100%;
}
.circle-path-point {
    position: absolute;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    right: 0;
    left: 0;
    top: 55%;
}
.circle-path-point::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.15;
    border-radius: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    z-index: -1;
}
.circle-path-point span {
    width: 45px;
    height: 45px;
    border: 4px solid var(--primary-color);
    background: var(--color-white);
    border-radius: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
}
.circle-path-point span::before {
    content: '';
    width: 19px;
    height: 19px;
    background: var(--primary-color);
    border-radius: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.circle-tooltip::after {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid var(--color-white);
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
.circle-tooltip {
    position: absolute;
    bottom: 50%;
    z-index: 2;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 0 30px 0 100px;
}
.circle-tooltip p {
    margin: 0;
    padding: 12px 10px;
    color: var(--color-light-purple);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.tooltip-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 76px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px 0 0 6px;
}
.icon-faster-logo {
    width: 21px;
    height: 25px;
    opacity: 1;
    position: relative;
    z-index: 1;
}
.faster-logo-icon {
    width: 41px;
    height: 41px;
    border-radius: 100%;
    display: block;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.faster-logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.2;
    z-index: 0;
    background: var(--color-white);
    border-radius: 100%;
}
.lock-icon {
    width: 17px;
    height: 19px;
}
.user-icon {
    width: 19px;
    height: 19px;
}
.envelope-icon {
    width: 19px;
    height: 12px;
}
.field-left-icon {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.field-mid-icon {
    height: 20px;
}
.field-mid-icon2 {
    height: 10px;
}
.d-inline-block {
    display: inline-block;
}
.d-block {
    display: block;
}
.field-icon {
    position: relative;
}
.theme-btn-gray {
    background: #32343c;
}
.theme-btn-icon-left {
    padding-left: 50px;
}
.btn-icon {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    text-align: center;
}
.btn-icon img {
    display: inline-block;
}
.social-btn-control {
    padding: 10px 0 20px;
}
.login-options::before {
    background: #eff1f2;
    height: 1px;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}
.login-options {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 20px 0;
}
.login-options span {
    background: #1b1d26;
    display: inline-block;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}
.mt-25 {
    margin-top: 25px !important;
}
.mt-40 {
    margin-top: 40px;
}
.mt-60 {
    margin-top: 60px;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.m-auto {
    margin: auto !important;
}
.mt-0 {
    margin-top: 0;
}
.reset-message p {
    font-weight: normal;
    line-height: 26px;
    padding: 0 0% 30px;
    color: var(--color-light-purple);
}
.soccer-logo {
    max-width: 130px;
    margin: 50px auto;
}
.reset-success {
    max-width: 86px;
    margin: 30px auto;
}
.theme-color {
    color: var(--primary-color) !important;
}
.user-p-link {
    position: relative;
    display: inline-block;
    padding: 0 0 0 48px;
}
.user-profile-img {
    border-radius: 100%;
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: -6px;
    bottom: -6px;
    margin: auto;
}
.border-color1 {
    border-color: #f88f00 !important;
}
.summary-col .user-p-link {
    margin-top: 6px;
}

.pad-tb-1 {
    padding-top: 35px;
    padding-bottom: 35px;
}
.space-between {
    justify-content: space-between;
}
.page-title-sec h3 {
    padding: 15px 0;
    margin: 0;
}
.page-filter-options {
    display: flex;
    align-items: center;
    padding: 8px 0;
}
.p-serach-field {
    min-width: 310px;
    margin: 0 35px;
}
.p-serach-field .th-textbox {
    font-size: 16px;
    color: var(--color-light-purple);
}
.p-serach-field .th-textbox::placeholder {
    color: var(--color-light-purple);
}
.action-selected {
    background: var(--color-dark);
    height: 50px;
    padding: 0 50px 0 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    min-width: 240px;
}
.action-selected span {
    display: block;
    line-height: 50px;
    color: var(--color-white);
}
.action-selected .h-user-dropdown {
    padding: 8px 25px;
    right: 25px;
    left: auto;
    text-align: left;
}
.ml-auto {
    margin-left: auto;
}
.option-available li {
    cursor: pointer;
    font-weight: 500;
}

.page-content-sec {
}
.eq-he-cols {
    align-items: inherit;
}
.flex-wrap {
    flex-flow: wrap;
}
.row-reverse {
    flex-flow: row-reverse;
}
.info-box-cont {
    width: 23%;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-light-dark);
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}
.info-box-img {
    max-width: 125px;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 30px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-box-img img {
    max-width: 100%;
    width: auto;
    display: inline-block;
}
.info-box-text p {
    font-size: 15px;
    margin: 0;
}
.info-box-text h4 {
    font-weight: 900;
    margin: 0;
    font-size: 23px;
    color: var(--primary-color);
}

.table-wrapper {
    /*overflow-x:auto;*/
    box-shadow: 0 6px 20px rgba(176, 185, 196, 0.15);
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
    background: white;
}
.d-table-cell {
    display: table-cell !important;
}
.full-width {
    width: 100%;
}
.table-wrapper .d-table {
    width: 100%;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
}
.table-wrapper .d-table-cell {
    padding: 30px 10px;
    vertical-align: middle;
    position: relative;
}
.table-wrapper .d-table .table-header .d-table-cell {
    color: #ffffff;
    background: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    font-weight: 700;
}
/* .table-wrapper .d-table .d-table-row .d-table-cell{border-bottom:1px solid #EFF1F2;} */
.table-wrapper .d-table .d-table-row:last-child .d-table-cell {
    border-bottom: 1px solid #ffffff;
}
.table-wrapper .d-table .table-header .d-table-cell:first-child {
    border-radius: 7px 0 0 0px !important;
}
.table-wrapper .d-table .table-header .d-table-cell:last-child {
    border-radius: 0 7px 0 0px !important;
}
.table-wrapper .d-table .d-table-row:last-child .d-table-cell:first-child {
    border-radius: 0 0 0 10px;
}
.table-wrapper .d-table .d-table-row:last-child .d-table-cell:last-child {
    border-radius: 0 0px 10px 0px;
}
.table-header .d-table-cell .c-d-arrow svg.icon-arrow-down {
    right: 0px;
    width: 16px;
    height: 9px;
    cursor: pointer;
}
.table-wrapper .d-table .d-table-cell .c-d-arrow {
    padding-right: 25px;
    display: inline-block;
    position: relative;
}

.d-table-cell a {
    color: var(--primary-color);
}
.color-purple {
    color: var(--color-light-purple) !important;
}
.color1 {
    color: #f88f00 !important;
}
.color2 {
    color: #f8b500 !important;
}
.color3 {
    color: #f5585c !important;
}
.color4 {
    color: #459023 !important;
}
.w-100 {
    min-width: 80px;
}
.dots-icon img {
    display: inline-block;
}
.info-icon {
    display: block;
    padding-left: 35px;
    position: relative;
}
.info-icon svg.icon {
    position: absolute;
    left: 0;
    z-index: 1;
}
.s-table-content input[type='checkbox'] {
    display: inline-block;
    vertical-align: top;
    border: none;
    cursor: pointer;
    display: none;
}
.s-table-content input[type='checkbox'] + label::before {
    content: '';
    background: url(images/checkbox-icon.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin: 1px 0;
}
.s-table-content input[type='checkbox']:checked + label::before {
    background: url(images/s-checkbox-icon.svg) no-repeat center center;
}
.table-data-row input[type='checkbox'] + label {
    vertical-align: middle;
}
.table-data-row .d-table-cell {
    padding: 30px 10px;
}
.table-data-row {
    background: #fff;
}
.table-data-row:nth-child(odd) {
    background: #cccccc08;
}

.table-records {
    margin: 20px 0 0;
    font-size: 17px;
    font-weight: 500;
}
.table-records .record-active {
    text-decoration: underline;
    color: var(--primary-color);
}
.table-records a {
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 0 5px;
}
.table-pagination {
    text-align: center;
    padding: 10px 0;
}
.table-pagination ul li {
    display: inline-block;
    vertical-align: bottom;
    padding: 10px 8px;
    font-size: 17px;
    font-weight: 500;
}
.table-pagination ul li.prev,
.table-pagination ul li.next {
    padding: 10px 25px;
}
.table-pagination ul li a {
}
.table-pagination ul li span,
.table-pagination ul li a:hover {
    color: var(--primary-color);
}
.popup-hand-img {
    max-width: 170px;
    margin: 50px auto;
}
.btn-inline-block {
    display: inline-block;
    vertical-align: middle;
    color: var(--color-light-purple);
    font-size: 18px;
    font-weight: 600;
}
.w-50-inner .theme-btn,
.w-50-inner a,
.w-50-inner span {
    width: 48%;
    display: inline-block;
    vertical-align: middle;
}
.popup-box {
    position: relative;
    display: none;
    position: relative;
    max-height: 100%;
}
.close-popup {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 30px; /*top:50px; right:40px;*/
    cursor: pointer;
}
svg.close-icon {
    width: 20px;
    height: 20px;
}
.popup_wrapper {
    margin: auto;
    right: 5% !important;
    left: 5% !important;
    border-bottom: 60px solid transparent;
    border-top: 60px solid transparent;
    overflow: hidden !important;
}
.popup-box {
    width: 100%;
    padding: 20px 10px;
    background: #ffffff;
    border-radius: 7px;
}
#popup-info-full_wrapper {
    max-width: 1440px;
}
.popup-box .sm-content-block {
    width: 100%;
    margin: 0;
}
.popup_wrapper {
    max-width: 640px;
    width: 90% !important;
}
.popup_wrapper .sm-content-block-w1 {
    max-width: 100%;
}
.popup-box .mCSB_inside > .mCSB_container {
    margin-right: 15px;
}
.popup-box .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}

.bg-black {
    background: var(--color-black);
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700 !important;
}
.h-card-box {
    background: var(--color-white);
    color: var(--color-dark);
    border-radius: 10px; /*max-width:380px;*/
    width: 31.5%;
    margin: 20px 2.7% 20px 0;
    padding: 0 0 30px;
}
.h-cards-wrapper .h-card-box:nth-child(3n) {
    margin-right: 0;
}

.h-card-title {
    border-radius: 10px 10px 0 0;
    min-height: 160px;
    text-align: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#08b8eb+0,08b8eb+100&1+0,0.5+100 */
    background: -moz-linear-gradient(top, rgba(8, 184, 235, 1) 0%, rgba(8, 184, 235, 0.5) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(8, 184, 235, 1) 0%, rgba(8, 184, 235, 0.5) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(8, 184, 235, 1) 0%, rgba(8, 184, 235, 0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#08b8eb', endColorstr='#8008b8eb',GradientType=0 ); /* IE6-9 */
}
.h-card-title h4 {
    font-weight: 700;
    font-size: 20px;
    padding: 30px 20px 0;
    color: var(--color-white);
}
.h-card-box-img {
    margin: -78px auto 0;
    width: 154px;
}
.h-card-box-img img {
    border-radius: 100%;
    width: 154px;
    height: 154px;
}
.h-card-text {
    font-size: 14px;
    display: flex;
    justify-content: center;
    padding: 20px 15px 20px;
}
.h-card-text strong {
    color: var(--color-black);
    min-width: 70px;
}
.h-card-text p {
    margin: 0 0 0 10px;
}
.h-card-box .theme-btn {
    margin: 10px 50px 10px;
}
.page-sec-w530 {
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
}
.page-searchbar form {
    display: block;
    position: relative;
}
.search-btn {
    border: none;
    cursor: pointer;
}
.search-btn-icon {
    font-size: 0;
    background: url(images/search-icon.svg) no-repeat center center;
    width: 20px;
    height: 22px;
    font-size: 0;
    text-indent: -99999px;
    position: absolute;
    right: 20px;
    top: 0px;
    z-index: 1;
    padding: 0;
    bottom: 0;
    margin: auto;
}
.th-searchbox {
    padding-right: 50px;
}
.h-search-field {
    position: relative;
}
.h-search-field .h-textbox {
    padding: 0 55px;
}
svg.search-icon-soccer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 20px;
    margin: auto;
    width: 15px;
    height: 15px;
}
svg.icon-arrow-down {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 19px;
    height: 11px;
    margin: auto;
}
svg.icon-white {
    fill: var(--color-white);
}
.m-lr-35 {
    margin-left: 35px;
    margin-right: 35px;
}
.filter-icon {
    width: 36px;
    height: 31px;
    fill: var(--primary-color);
}
.icon-info {
    width: 25px;
    height: 25px;
    fill: var(--color-gray);
}
.icon-dots {
    width: 21px;
    height: 5px;
    fill: var(--color-gray);
}
.eye-blue {
    width: 26px;
    height: 18px;
    fill: var(--primary-color);
}
.facebook-icon {
    width: 12px;
    height: 22px;
    fill: #3d6ad6;
}
.google-icon {
    width: 22px;
    height: 22px;
}

.toggle-menu-btn {
    display: inline-block;
    margin: 35px 0 15px;
}
.toggle-menu-btn.open .menu__btn > span {
    transform: rotate(45deg);
}
.toggle-menu-btn.open .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
}
.toggle-menu-btn.open .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
.toggle-menu-btn.open .menu__box {
    visibility: visible;
    left: 0;
}
.menu__btn {
    display: block;
    position: relative;
    width: 34px;
    height: 28px;
    cursor: pointer;
    z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #c1c1c1;
    transition-duration: 0.25s;
}
.menu__btn > span::before {
    content: '';
    top: -8px;
}
.menu__btn > span::after {
    content: '';
    top: 8px;
}

.show-tablet {
    display: none !important;
}
.h-search-dropdown {
    left: 55px;
    right: 25px;
    width: auto;
}
.h-search-dropdown ul li a img {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}
.h-search-dropdown ul li a span {
    display: inline-block;
    vertical-align: middle;
}
.h-inner-searchbar {
    position: relative;
}
.h-inner-searchbar .p-serach-field {
    min-width: inherit;
    border-bottom: 1px solid #eff1f2;
    padding-bottom: 30px;
}
.h-inner-searchbar .th-textbox {
    background: #eff1f2;
    color: #8d8f93;
    font-size: 14px;
}
.h-inner-searchbar .th-textbox::placeholder {
    color: #8d8f93;
}
.h-search-dropdown h5 {
    text-align: center;
    font-size: 16px;
}
.no-res-img {
    width: 70px;
    margin: 70px auto 30px;
}
.no-results-found h4 {
    font-size: 25px;
    padding-bottom: 10px;
}
.no-results-found p {
    font-size: 20px;
    line-height: 34px;
    font-family: var(--poppins);
}

.info-tooltip {
    width: 360px;
    left: inherit;
    top: 35px;
    border-radius: 9px;
}
.info-tooltip2 {
    width: auto;
    left: 30px;
    border-radius: 9px;
    right: inherit;
}
.info-tooltip2 p {
    font-size: 17px;
}
.info-tooltip2 a {
    color: #8d8f93;
}
.info-tooltip2 a:hover {
    color: var(--primary-color);
}
.info-tooltip-last {
    top: inherit;
    bottom: 35px;
}
.info-tooltip p {
    color: #8d8f93;
    margin: 0;
    padding: 8px 5px;
    font-weight: bold;
}
.bg-white-sec {
    background: var(--color-white);
    color: var(--color-dark);
    border-radius: 8px;
    padding: 25px;
    width: 100%;
}
.advanced-filters {
    margin-bottom: 40px;
}
.ad-filter-col {
    width: 33.33%;
    margin: 15px 0;
}
.ad-filter-col-2x {
    width: 66.66%;
}
.ad-filter-col label {
    width: 100px;
    text-align: right;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black);
}
.ad-filter-field {
    width: calc(100% - 125px);
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.ad-filter-field .th-textbox {
    width: 100%;
    font-size: 17px;
    padding: 0 15px;
}
.th-textbox-white::placeholder {
    color: var(--color-dark);
}
.th-textbox-white {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1px solid #e5e5e5;
}
.th-selctbox-wrap select {
    width: 116% !important;
    border: none !important;
    position: relative;
    z-index: 1;
    background: none;
}
.th-selctbox-wrap {
    overflow: hidden;
    border: none;
    border-radius: 4px;
    position: relative;
    background: #f3f5f7;
}
.th-selctbox-wrap svg.icon-arrow-down {
    fill: var(--color-light-purple);
}
.ad-filter-field .th-textbox,
.ad-filter-field .th-selectbox {
    color: var(--color-light-purple);
}
.ad-filter-field .f-date-field {
    width: 40%;
}
.at-text {
    color: #8d8f93;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--poppins);
}
.d-none {
    display: none;
}
.th-toggle-btn {
    cursor: pointer;
}
.calender-icon2 {
    width: 21px !important;
    height: 19px !important;
}

.full-width-cell {
    width: 100% !important;
    display: block !important;
}
.table-no-record {
    padding: 50px 30px;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: bold;
    border-radius: 0 0 10px 10px;
}
.table-no-record p {
    margin: 0;
    font-weight: 500;
    font-size: 17px;
}

.ui-widget-header {
    border: 1px solid #06bbee;
    background: #06bbee;
    color: #fff;
    font-weight: bold;
}
.ui-widget-header .ui-icon {
    background-image: url(libs/jquery-ui-1.12.1/images/ui-icons_ffffff_256x240.png);
}
.ui-widget-header .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    background: #154c62;
    border: 1px solid #154c62;
    cursor: pointer;
}
.bg-color-transparent {
    background-color: transparent !important;
}
.white-color,
.white-color a {
    color: var(--color-white);
}
.icon-arrow-back {
    width: 11px;
    height: 11px;
    margin-right: 10px;
    transform: rotate(90deg);
}
.mlr-25-minus {
    margin-left: -25px;
    margin-right: -25px;
}
.gray-color {
    color: #8d8f93 !important;
}
.summary-row {
    border-bottom: 1px solid #eff1f2;
    padding: 10px 50px;
    font-size: 19px;
    color: var(--color-light-purple);
}
.summary-row label {
    font-size: 20px;
}
.summary-row h3 {
    font-weight: 600;
}
.summary-row a {
    color: var(--color-light-purple);
}
.summary-col {
}
.summary-col1 {
    width: 210px;
}
.summary-col2 {
    width: calc(100% - 210px);
}
.summary-col-inner {
    margin: 20px 0;
}
.summary-colsize-fix {
    width: 40%;
}
.summary-col3 {
}
.summary-col h3 {
    padding: 0;
    margin: 0;
    color: var(--color-black);
}
.summary-col h4 {
    margin: 0;
    color: var(--color-black);
}
.summary-col p {
    margin: 0;
    font-weight: 400;
}
.summary-col label {
    font-weight: 500;
    color: var(--color-dark);
}
.summary-col label span {
    display: inline-block;
    margin-left: 20px;
    font-weight: bold;
}
.summary-col1 label.ajust-label1 {
    display: inline-block;
    margin-top: 28.5px;
}
.summary-row-eq-cols .summary-col {
    width: 25%;
    padding-right: 15px;
}
.summary-row-eq-cols {
    padding: 25px 50px;
}
.ml-50 {
    margin-left: 50px !important;
}
.summary-colsize-full {
    width: 100%;
}
.word-break {
    word-break: break-all;
}
.summary-col .theme-btn {
    min-width: 308px;
    padding: 11px 30px;
    vertical-align: middle;
}
.user-name-pic {
    display: block;
    padding: 0px;
    position: relative;
}
.user-name-pic img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; /*position:absolute; left:0; top:0px; bottom:0; margin:auto;*/
}
.user-name-pic {
    color: var(--primary-color);
}
.user-name-pic span {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    max-width: calc(100% - 65px);
}
.summary-action-btns {
    position: relative;
    padding-left: 50px;
}
.reload-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.theme-btn-gradient2 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f8a200+1,f8b500+100 */
    background: rgb(248, 162, 0); /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(248, 162, 0, 1) 1%, rgba(248, 181, 0, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(248, 162, 0, 1) 1%, rgba(248, 181, 0, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(248, 162, 0, 1) 1%, rgba(248, 181, 0, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8a200', endColorstr='#f8b500',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.theme-btn-gradient3 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#459023+0,72b425+100 */
    background: rgb(69, 144, 35); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(69, 144, 35, 1) 0%, rgba(114, 180, 37, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(69, 144, 35, 1) 0%, rgba(114, 180, 37, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(69, 144, 35, 1) 0%, rgba(114, 180, 37, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#459023', endColorstr='#72b425',GradientType=1 ); /* IE6-9 */
}
.flex-start-align {
    align-items: flex-start;
}
.edit-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    fill: var(--color-dark);
}
.delete-icon {
    width: 19px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}
.plus-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
.middle-align * {
    vertical-align: middle;
    display: inline-block;
}
.summary-colsize-fix.middle-align * {
    margin-right: 6px;
}
.no-border {
    border: none !important;
}
.disabled-btn {
    opacity: 0.5;
    cursor: not-allowed;
}
.refund-popup-img {
    width: 190px;
    margin: 0px auto 50px;
}
.popup-form1 label {
    font-weight: 800;
    margin: 0 0 10px;
    display: block;
    font-size: 20px;
}
.w-60-40-inner span {
    width: 40%;
    display: inline-block;
    margin: 15px auto;
}
.w-60-40-inner .theme-btn {
    width: 58%;
}
.w-60-40-inner {
    padding: 35px 0 0px;
}
.min-w-280 {
    min-width: 280px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.adjust-he1 {
    margin: 15px 30px 15px 0;
    display: inline-block;
}
.pb-130 {
    padding-bottom: 130px !important;
}

.form-wrapper {
}
.form-col {
    width: 48.5%;
    margin-bottom: 20px;
}
.form-wrapper label {
    color: var(--color-navy-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.icon-field-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    z-index: 1;
}
.icon-field-right-2 {
    right: -50px;
}
.control-icon-right input {
    padding-right: 55px;
}
.control-icon-right {
    position: relative;
}
.form-control .f-date-field {
    max-width: 140px;
    padding: 0 20px;
    text-align: center;
}
.ml-25 {
    margin-left: 25px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-20 {
    padding-bottom: 20px;
}
.m-lr-25 {
    margin-left: 25px;
    margin-right: 25px;
}
.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.min-w-auto {
    min-width: inherit !important;
}
.mt-5-minus {
    margin-top: -5px;
}
.mt-15-minus {
    margin-top: -13px;
}
span.theme-btn {
    cursor: auto;
}
.popup-form-wrapper .form-wrapper {
    padding: 10px 30px;
}
.five-popup-img {
    max-width: 200px;
    margin: 0 auto 15px;
}
.lh-15 {
    line-height: 1.5;
}
.th-textarea {
    resize: none;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 150px;
}
.form-col-full {
    width: 100%;
}
.info-boxes-three-col .info-box-cont {
    width: 30%;
    padding: 0;
}
.info-boxes-six-col .info-box-cont {
    width: 15.8%;
    padding: 20px 20px;
}
.info-boxes-six-col .info-box-img {
    height: 100px;
    padding-bottom: 15px;
}
.profile-sidebar {
    max-width: 380px;
    width: 28%;
    margin-bottom: 25px;
    padding-top: 40px;
}
.profile-cont-sec {
    width: 70%;
    padding: 40px 60px;
    margin-bottom: 25px;
}
.profile-img {
    max-width: 164px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    border-radius: 100%;
    margin-bottom: 30px;
}
.profile-img img {
    display: inline-block;
    border-radius: 100%;
    width: auto;
    max-width: 100%;
}
.profile-sidebar ul {
    overflow: hidden;
}
.profile-sidebar ul li {
}
.profile-sidebar ul li a svg {
    transform: rotate(-90deg);
    display: none;
}
.profile-sidebar ul li a:hover svg,
.profile-sidebar ul li.p-active-link a svg {
    display: block;
}
.profile-sidebar ul li a {
    border-bottom: 1px solid #eff1f2;
    display: block;
    padding: 22px 30px;
    font-family: var(--poppins);
    font-weight: 500;
    position: relative;
}
.profile-sidebar ul li.p-active-link a,
.profile-sidebar ul li a:hover {
    font-family: var(--poppins);
    font-weight: 700;
    color: var(--color-white);
    background: var(--primary-color);
}
.profile-bottom-link {
    padding: 5px 0;
}
.password-img {
    padding: 0;
    text-align: center;
    margin: 0 auto 30px;
}
.password-img img {
    display: inline-block;
}

.pw-req-fe li.req-fix svg.checkbox-circle {
    stroke: var(--primary-color);
    fill: var(--primary-color);
}
.pw-req-fe li.req-fix {
    color: var(--primary-color);
}
.pw-req-fe li {
    padding: 10px 0px 10px 40px;
    color: var(--color-white);
    position: relative;
    font-size: 18px;
}
.pw-req-fe li svg.checkbox-circle {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    stroke: var(--color-white);
}
.pw-req-fe li svg.checkbox-circle {
    fill: var(--color-white);
}
.checkbox-circle {
    width: 22px;
    height: 22px;
}
.mt-20-minus {
    margin-top: -20px !important;
}
.underline,
.underline:hover {
    text-decoration: underline;
}
.nexa-18 {
    font-size: 18px;
}
.bold-text,
.bold-text p {
    font-weight: bold !important;
}
.ins-logo1 {
    max-width: 192px;
    margin: 20px auto 40px;
    width: 90%;
}
.ins-logo1 img {
    width: 100%;
}
.progress-bar-wrap {
    width: 90%;
    padding: 0 !important;
    margin: 10px auto 40px;
}
span.progress-bar-outer {
    display: block;
    width: 100%;
    height: 22px;
    border-radius: 28px;
    background: #292a30;
}
span.progress-bar-inner {
    display: block;
    height: 22px;
    border-radius: 28px;
    background: var(--primary-color);
}
span.progress-bar-inner.step1 {
    width: 25%;
}
span.progress-bar-inner.step2 {
    width: 50%;
}
span.progress-bar-inner.step2-1 {
    width: 65%;
}
span.progress-bar-inner.step3 {
    width: 75%;
}
span.progress-bar-inner.step4 {
    width: 100%;
}
.form-section label {
    color: var(--color-black);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}
.form-section .form-col {
    width: 46.5%;
}
.form-section input.th-textbox.th-textbox-white::placeholder,
input.th-textbox.th-textbox-white::placeholder {
    color: #8d8f93 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fs-20 {
    font-size: 20px;
}
.image-uploader .iu-message {
    position: relative;
    padding-left: 80px;
    text-align: left;
}
.image-uploader .iu-message .iu-placeholder {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--color-white);
    font-weight: 800;
    text-align: center;
    line-height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 5px;
    border-radius: 100%;
}
.image-uploader .iu-message,
.image-uploader .iu-message p {
    margin: 0;
}
.input-images .upload-text,
.image-uploader {
    min-height: 85px;
    padding: 30px 25px;
    border: 1px dashed #e5e5e5;
    border-radius: 8px;
    position: relative;
}
.image-uploader .fileUploader {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    left: 0;
    right: 0;
    font-size: 0;
    text-indent: -999999px;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    opacity: 0;
}
.img-preview img,
.preview-placeholder img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100%;
}
.preview-placeholder {
    width: 150px;
    border-radius: 100%;
}
.img-preview {
    width: 150px;
    border-radius: 100%;
}
.popup_wrapper .img-preview {
    margin: 0px auto 25px;
}
.imageUploader {
    position: absolute;
    top: 0;
    left: 0px;
    height: 200px;
    width: 200px;
    cursor: pointer;
    text-indent: -999999px;
    font-size: 0;
    z-index: 3;
    opacity: 0;
}
.upload-field {
    overflow: hidden;
}
.theme-bg {
    background: var(--primary-color);
}
.img-edit-icon {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 0px;
    text-align: center;
}
.img-edit-icon svg.icon {
    left: 0;
    right: 0;
    width: 17px;
    height: 17px;
}
.diamond-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}
.icon-star {
    width: 12px;
    height: 12px;
    fill: var(--primary-color);
}
.user-meta-info ul li.li-splitter::before {
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    background: #eff1f2;
    width: 1px;
    margin: auto;
    content: '';
}
.user-meta-info ul li {
    width: 50%;
    text-align: center;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}
.user-meta-info ul li span,
.sm-label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    display: block;
    line-height: 13px;
    color: var(--color-dark);
}
.theme-btn-gray {
    background: #afb8c3;
}
.theme-btn-purple {
    background: var(--color-light-purple);
}
.disabled-btn {
    cursor: not-allowed;
}
.opacity1 {
    opacity: 1 !important;
}
.page-bg1 {
    background: #111219 url(images/page-bg1.png) no-repeat right bottom;
    background-size: 30% !important;
}
.dropdown-btn .theme-btn {
    background: #4cd9fc;
    padding: 15px 35px;
}
.mw-1040 {
    max-width: 1040px !important;
    margin: 0 auto;
}
.full-width-imp {
    width: 100% !important;
}
.profile-img-sec {
    position: relative;
    width: 196px;
    background: var(--color-white);
    border-radius: 100%;
    margin: 25px auto -95px;
}
.profile-pic {
    width: 196px;
}
.profile-pic img {
    border-radius: 100%;
    width: 196px;
    height: 196px;
    object-fit: cover;
}
.h-card-body {
    padding: 150px 40px 0;
    background: var(--color-white);
}
.profile-edit-section .h-card-title h4 {
    font-size: 24px;
    font-weight: 900;
}
.th-textbox-inline {
    display: block;
    max-width: 300px;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 900;
    color: var(--color-white);
}
.th-textbox-inline::placeholder {
    color: var(--color-white);
}

.youtube-popup-img {
    max-width: 290px;
    margin: 0 auto 30px;
}
.icon-rightside-absolute {
    width: calc(100% - 40px);
    position: relative;
}
.icon-absolute {
    position: absolute;
    width: 25px;
    height: 25px;
    right: -40px;
    bottom: 40px;
    cursor: pointer;
    z-index: 2;
}
.form-switch .switch {
    margin-top: 15px;
    margin-left: 0;
}
.gap-right-25px span {
    margin-right: 25px;
    display: inline-block;
}
.gap-right-15px span::last-child {
    margin-right: 0;
}
.pad-r-10 {
    padding-right: 10px;
}
.w-460px {
    width: 460px !important;
    padding: 25px;
}
.right-100 {
    right: -100px !important;
}
.switch-blue-gradient .slider {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00d0ff+0,08b8eb+100 */
    background: #08b8eb; /* Old browsers */
    background: -moz-linear-gradient(bottom, #08b8eb 0%, #00d0ff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(bottom, #08b8eb 0%, #00d0ff 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to top, #08b8eb 0%, #00d0ff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#08b8eb', endColorstr='#00d0ff',GradientType=1 ); /* IE6-9 */
}
.switch-blue-gradient input:checked + .slider {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f8b500+0,f89f26+100 */
    background: rgb(248, 181, 0); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(248, 181, 0, 1) 0%, rgba(248, 159, 38, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(248, 181, 0, 1) 0%, rgba(248, 159, 38, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(248, 181, 0, 1) 0%, rgba(248, 159, 38, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8b500', endColorstr='#f89f26',GradientType=0 ); /* IE6-9 */
}
.switch-option label {
    width: 100%;
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 20px;
    position: relative;
}
.delete-five-img {
}
.width-200px {
    max-width: 200px;
    width: 90%;
    margin: 0 auto 10px;
}
.width-270px {
    max-width: 270px;
    width: 90%;
    margin: 0 auto 30px;
}
.sm-textbox1 {
    width: 140px;
    padding-right: 20px !important;
    padding-left: 20px;
    text-align: center;
    margin-right: 15px;
    margin-bottom: 15px;
}
.letter-space1 {
    letter-spacing: 10px;
}
.pr-65px {
    padding-right: 65px;
}
.icon-mb-15px .icon-field-right {
    bottom: 15px;
}
.form-control label.error {
    position: absolute;
    top: 55px;
    font-size: 12px;
    color: red;
    font-weight: 400;
}
.theme-btn-gray.disabled-btn {
    opacity: 1;
}
.validate-field {
    position: relative;
}
.checkbox-labels {
}
.hour-row label,
.checkbox-labels label {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    font-family: var(--poppins);
    font-size: 18px;
    color: #8d8f93;
    position: relative;
    padding: 0 0px 0 35px;
}
.checkbox-labels label::before,
.checkbox-labels label::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 100%;
    background: var(--color-white);
    cursor: pointer;
}
.checkbox-labels input.checkbox-option {
    /*display:none;*/
    visibility: hidden;
    opacity: 0;
    width: 0px !important;
    height: 0px !important;
}
.checkbox-labels label::before {
    width: 20px;
    height: 20px;
    border: 1px solid #e5e5e5;
}
.checkbox-labels label.error::before,
.checkbox-labels label.error::after {
    display: none;
}
.checkbox-labels input.checkbox-option:checked + label::before {
    border-color: var(--primary-color);
}
.checkbox-labels input.checkbox-option:checked + label::after {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    margin: auto;
    top: 5px;
    left: 5px;
}
.checkbox-labels li {
    display: inline-block;
    margin: 7px 10px 7px 0;
}
.action-icons span {
    margin: 0 5px;
}
.hour-row {
    color: #8d8f93;
    font-size: 18px;
    font-family: var(--poppins);
    font-weight: 400;
    position: relative;
    margin: 0 0 20px;
    padding-right: 200px;
    max-width: 700px;
}
.hour-row label {
    padding-left: 0;
    min-width: 120px;
    padding-top: 20px;
}
.hour-row label,
.hour-row span {
    padding-top: 15px;
}
.hour-row .sm-textbox1 {
    margin-right: 0;
}
.cu-pointer {
    cursor: pointer;
}
.fs-12 {
    font-size: 13px;
    font-weight: 600;
}
.ab-hour-icon {
    position: absolute;
}
.remove-row {
    display: none;
    width: 150px;
    right: 0;
    bottom: 34px;
    z-index: 1;
}
.clone-icon.ab-hour-icon {
    width: 40px;
    right: 140px;
    bottom: 34px;
    z-index: 1;
}
.remove-row.show {
    display: block;
}
.info-icon1 {
}
.upload-field label.error {
    position: absolute;
    bottom: -20px;
    color: red;
    left: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
}
.dispo-switch .slider span {
    margin-left: 10px;
    font-size: 13px;
    width: 80px;
    text-align: right;
}
.width-100 {
    width: 100px;
    margin: 10px auto 40px;
}
.mt-10 {
    margin-top: 10px !important;
}
button.delete-image {
    background: url(images/cross-icon.svg) no-repeat center top;
    width: 33px;
    height: 33px;
    background-size: 33px 33px !important;
}
.input-images .image-uploader {
    border: none !important;
    padding: 0;
}
.input-images .upload-text {
    max-width: 500px;
    margin-bottom: 30px;
}
.bg-white {
    background: var(--color-white) !important;
}
.planning-sec-wrap {
    color: #154c62;
}
.time-slot-wrapper {
    overflow: auto;
    padding: 10px 0 30px;
}
.time-slot-wrapper .d-flex > div {
    width: 115px;
    min-width: 115px;
}
.full-width-content {
    padding-left: 5%;
    padding-right: 5%;
}
.justify-center {
    justify-content: center;
}
.planning-stage-label {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 16px;
}
.time-hour {
    font-size: 15px;
    font-family: var(--poppins);
    font-weight: 400;
    position: relative;
    left: -20px;
    padding-bottom: 15px;
}
.time-slot {
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    padding: 20px 5px 0;
}
.time-slot strong {
    font-size: 14px;
    font-weight: 700;
}
.time-slot small {
    font-size: 12px;
    display: block;
}
.reserve-slot {
    height: 100%;
    padding: 16px 10px;
    border-radius: 0 30px 30px 0;
}
.reserve-style1 {
    color: #06bbee;
    background: #dbf5fc;
    border-left: 3px solid #06bbee;
}
.reserve-style1 a {
    color: #06bbee;
}
.reserve-style2 {
    color: #154c62;
    background: #dfebf0;
    border-left: 3px solid #154c62;
}
.reserve-style2 a {
    color: #154c62;
}
.reserve-style3 {
    color: #8d8f93;
    background: #f0f0f0;
    border-left: 3px solid #707070;
}
.reserve-style3 a {
    color: #8d8f93;
}
.reserve-style4 {
    color: #e62b32;
    background: #ffd6d8;
    border-left: 3px solid #e62b32;
}
.reserve-style4 a {
    color: #e62b32;
}
.mr-10 {
    margin-right: 10px;
}
.datepicker-icon {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}
.datepicker-icon svg.icon {
    z-index: 1;
    fill: var(--primary-color);
}
.datepicker-icon .field-left-icon {
    right: 90%;
    left: 0;
    transform: rotate(-270deg);
}
.datepicker-icon .field-right-icon {
    left: 90%;
    transform: rotate(-90deg);
}
.planning-datepicker {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 900;
    font-family: var(--poppins);
    padding: 0;
    max-width: 450px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}
.calender-icon {
    width: 31px;
    height: 31px;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none;
    background: #ffffff;
    font-weight: normal;
    color: #1b1d26;
    font-family: var(--poppins);
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    line-height: 28px;
}
.ui-state-active,
.ui-widget-content .ui-state-hover,
.ui-state-active,
.ui-widget-content .ui-state-active {
    background: var(--primary-color);
    color: var(--color-white);
    transiton: 0s all;
}
.ui-widget-content button[type='button'].ui-state-hover,
.ui-state-active,
.ui-widget-content button[type='button'].ui-state-hover.ui-state-active {
    background: none;
    color: var(--color-dark);
    transiton: 0s all;
}

.ui-widget.ui-widget-content {
    z-index: 5 !important;
    border: none;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
}
.ui-widget {
    font-family: var(--poppins);
}
.ui-widget-content {
    color: #154c62;
}
.ui-datepicker-title {
    text-transform: capitalize;
}
.ui-widget-header .ui-icon {
    background: url(images/c-arrow-icon.svg) no-repeat center center;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
}
.ui-datepicker-prev .ui-icon {
    transform: rotate(-180deg);
}
.ui-datepicker-header .ui-state-hover {
    background: none;
    border: 2px solid transparent;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 7px;
}
.ui-widget-header {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
    padding-bottom: 30px !important;
}
.ui-datepicker {
    width: 21em;
    padding: 1.2em 2.2em 1em;
}
.word-break {
    word-break: break-all;
}
.label-checkbox input[type='checkbox'] + label {
    width: auto;
}
.label-checkbox input[type='checkbox'] + label::before {
    margin-right: 10px;
    margin-top: 3px;
}
.loc-pointer-icon {
    padding-left: 40px !important;
    position: relative;
}
.loc-pointer {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100px;
}
.sec-border-fix::before {
    content: '';
    position: absolute;
    left: -60px;
    right: -60px;
    height: 1px;
    background: #eff1f2;
    top: 0px;
}
.sec-border-fix {
    position: relative;
}
.section-tabs-label {
    padding: 10px 0 40px;
    position: relative;
}
.section-tabs-label ul li:first-child {
    padding-left: 0;
}
.section-tabs-label ul li {
    display: inline-block;
    padding: 10px 20px;
}
.section-tabs-label ul li a {
    padding: 10px 0;
    display: inline-block;
    font-weight: 300;
    border-bottom: 5px solid transparent;
    font-size: 20px;
}
.section-tabs-label ul li a.active-sec {
    font-weight: 500;
    border-color: var(--primary-color);
}
.hide-element {
    display: none;
}
.min-w-230 {
    min-width: 230px;
}
.width-280 {
    width: 280px;
}
.total-logo img {
    width: 98px;
}
.total-logo-big {
    width: 165px;
    margin: 25px auto;
}
.total-logo-big img {
    width: 100%;
}
.qr-code {
    max-width: 200px;
    width: 90%;
    margin: 25px auto;
}

.avis-rows-wrapper .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 10px;
}
.avis-rows-wrapper .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background: #fafafa;
    width: 23px;
}
.avis-rows-wrapper .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: var(--primary-color);
}
.avis-rows-wrapper {
    overflow: auto;
}
.mlr-60-minus {
    margin-left: -60px;
    margin-right: -60px;
}
.avis-row {
    padding: 25px 60px;
}
.avis-user-info {
    width: 40%;
}
.avis-user-desc {
    width: 59%;
}
.avis-user-desc p {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
.avis-user-img,
.avis-user-meta {
    vertical-align: middle;
}
.avis-user-img img {
    border: 4px solid var(--primary-color);
    border-radius: 100%;
    width: 96px;
    height: 96px;
    object-fit: cover;
}
.avis-user-img {
    margin-right: 20px;
    width: 96px;
}
.avis-user-meta {
    width: calc(100% - 125px);
}
.avis-user-meta h3 {
    padding: 0;
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 24px;
}
.avis-user-meta > span {
    padding-bottom: 5px;
}
.sm-inline-datepicker {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--poppins);
    padding: 0;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    border: none;
    width: 280px;
}
.sm-inline-datepicker-wrap {
    max-width: 280px;
}
.sm-inline-datepicker-wrap svg.icon-arrow-down {
    width: 14px;
    height: 11px;
}
.weekpicker {
    font-size: 0;
    color: #fff;
    text-indent: -9999px;
    height: 40px;
    position: absolute;
    z-index: 3;
}
.graph-col {
    padding: 15px 0 0;
}
.graph-col-size1 {
    width: 24%;
}
.graph-col-size2 {
    width: 52%;
}
.graph-col h4 {
    padding: 8px 0 0;
}
.graph-img {
    max-width: 140px;
    width: 94%;
    margin: 0 auto;
}
.graph-sec {
    margin: 30px auto 100px;
}
.graph-img img {
    max-width: 100%;
    width: auto;
    display: inline-block;
}
.g-stat-col {
    width: 50%;
    padding: 5px 0;
}

.page-sec-nav a {
    font-size: 23px;
    font-weight: 500;
}
.page-sec-nav a svg.icon-arrow-back {
    width: 16px;
    height: 15px;
}
.page-sec-nav a:hover svg.icon-arrow-back {
    fill: var(--primary-color);
}
.profile-cont-sec .page-sec-nav a {
    font-size: 18px;
}
.page-sec-nav a svg.icon-arrow-back {
    width: 11px;
    height: 11px;
}
.col-size-75-percent {
    width: 75% !important;
}
.col-size-75-percent p {
    margin-bottom: 20px;
    line-height: 25px;
    font-size: 18px;
    font-weight: 400;
}
.user-icon-circle {
    background: #eff1f2;
    border: 1.5px solid var(--primary-color);
    border-radius: 100%;
    display: inline-block;
    width: 37px;
    height: 37px;
    text-align: center;
    padding: 7px 0 0;
    margin-left: 0 !important;
}
.user-icon-circle svg {
    width: 19px;
    height: 19px;
    fill: var(--primary-color);
}

/*=============== RESPONSIVE =================*/

@media only screen and (min-width: 1900px) {
    .bg-logo-pos1::before {
        left: 11%;
    }
}
@media only screen and (min-width: 1025px) {
    .header-navigation > ul {
        display: flex !important;
    }
    .header-navigation ul li:hover ul.dropdown-menu {
        display: block !important;
    }
    .header-navigation ul.dropdown-menu {
        display: none !important;
    }
}
@media only screen and (max-width: 1600px) {
    .h-logo {
        width: 200px;
    }
    .h-user-pic {
        width: 65px;
    }
    .h-user-pic img {
        border-width: 2px;
    }
    .header-row {
        min-height: 70px;
    }
    .header-wrapper {
        min-height: inherit;
    }
    .h-user-info h5 {
        margin: 0;
    }
    .header-navigation ul li a {
        padding: 30px 35px;
    }
}
@media only screen and (max-width: 1399px) {
    .table-wrapper .d-table {
        font-size: 16px;
    }
    .header-navigation.nav-ver2 ul li a {
        padding: 35px 24px;
    }
}

@media only screen and (max-width: 1365px) {
}
@media only screen and (max-width: 1199px) {
    .connexion-path-wrapper {
        position: static;
        margin: 20px auto;
        width: 90%;
        transform: translateY(0%);
    }
    .header-navigation ul li a {
        padding: 35px 25px;
    }
    .header-navigation.nav-ver2 ul li a {
        padding: 35px 14px;
    }
    .summary-row {
        padding: 10px 40px;
        font-size: 17px;
    }
    .summary-row-eq-cols {
        padding: 25px 40px;
    }
    .summary-row .theme-btn {
        font-size: 17px;
    }
    .info-boxes-six-col .info-box-cont {
        width: 30%;
    }
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
    .h-logo {
        max-width: 175px;
    }
}
@media all and (max-width: 1024px) {
    .tablet-mt-0 {
        margin-top: 0px;
    }
    .show-tablet {
        display: block !important;
    }
    .header-row {
        flex-direction: column;
    }
    .header-navigation ul {
        display: none;
    }
    .header-navigation ul li a {
        padding: 20px 22px;
        display: block;
    }
    .header-navigation ul li {
        width: 100%;
        text-align: center;
    }
    .header-navigation ul.dropdown-menu {
        width: 100%;
        top: 60px;
    }
    .header-navigation ul li .open-dropdown-menu {
        width: 16px;
        height: 11px;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 27px;
        margin: auto;
        z-index: 3;
        cursor: pointer;
    }
    .header-navigation ul li:hover ul.dropdown-menu {
        display: none;
    }
    .header-wrapper {
        padding: 15px 25px;
    }
    .h-logo {
        position: static;
        margin: 0 auto 10px;
    }
    .top-searcbar {
        width: 45%;
    }
    .info-box-cont {
        width: 46%;
    }
    .h-cards-wrapper .h-card-box:nth-child(3n),
    .h-card-box {
        width: 47%;
        margin-right: 6%;
    }
    .h-cards-wrapper .h-card-box:nth-child(2n) {
        margin-right: 0;
    }
    .page-title-sec {
        flex-direction: column;
    }
    .ad-filter-col {
        width: 49%;
    }
    .ad-filter-col-2x {
        width: 100%;
    }
    .summary-row {
        flex-direction: column;
    }
    .summary-row-eq-cols {
        flex-direction: row;
    }
    .summary-row-eq-cols .summary-col {
        width: 50%;
        padding: 10px;
        text-align: left;
    }
    .col-size-75-percent {
        width: 100% !important;
    }
    .two-columns-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .profile-sidebar,
    .profile-cont-sec {
        max-width: inherit;
        width: 100%;
    }
    .eq-he-cols-table .summary-col1,
    .summary-col2 {
        width: 100%;
    }
    .t-flex-start {
        align-items: flex-start;
    }
    .form-control span.m-lr-25 {
        margin-left: 10px;
        margin-right: 10px;
    }
    .two-columns-wrapper {
    }
    .page-bg1 {
        background: #12151c;
    }
}
@media all and (min-width: 768px) and (max-width: 1024px) {
}
@media all and (max-width: 767px) {
    .header-row {
        flex-direction: column;
        min-height: auto;
    }
    .header-sec {
        margin: 0 auto 20px;
        width: 100%;
        max-width: inherit;
    }
    .h-user-dropdown {
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    }
    .h-user-profile {
        justify-content: center;
    }
    .popup_wrapper {
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
    }
    .h-cards-wrapper .h-card-box:nth-child(2n),
    .h-cards-wrapper .h-card-box:nth-child(3n),
    .h-card-box {
        max-width: 400px;
        width: 96%;
        margin: 20px auto;
    }
    .page-filter-options {
        flex-wrap: wrap;
        padding: 10px 40px;
        position: relative;
    }
    .page-filter-options .filter-icon {
        position: absolute;
        bottom: 20px;
        right: 40px;
        z-index: 1;
    }
    .page-filter-options > div {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 25px;
    }
    .page-filter-options .page-searchbar {
        margin-left: 0;
        width: 83%;
        margin-bottom: 0;
    }
    .page-filter-options .p-serach-field {
        min-width: inherit;
    }
    .form-section .form-col,
    .form-col,
    .ad-filter-col {
        width: 100%;
    }
    .m-flex-column,
    .summary-col-inner {
        flex-direction: column;
    }
    .summary-col1 {
        width: 100%;
    }
    .summary-row {
        text-align: center;
    }
    .summary-colsize-fix {
        margin: 0 0 24px;
        width: 100%;
    }
    .page-title-sec h3 a.theme-btn {
        display: block;
    }
    .adjust-he1 {
        display: block;
        margin: 20px auto;
    }
    .form-col label {
        text-align: left;
    }
    .summary-col-inner.d-flex .flex-start-align {
        justify-content: center;
    }
    .summary-colsize-full.d-flex {
        flex-direction: column;
    }
    .mt-15-minus {
        margin-top: 30px;
    }
    .profile-cont-sec {
        padding: 30px;
    }
    .mlr-60-minus {
        margin-left: -30px;
        margin-right: -30px;
    }
    .avis-row {
        padding: 25px 30px;
    }
    .sec-border-fix::before {
        left: -30px;
        right: -30px;
    }
    .avis-user-desc {
        width: 55%;
    }
    .graph-col-size1 {
        width: 50%;
    }
    .graph-col-size2 {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    body {
        font-size: 16px;
    }
    .h-user-info h5 {
        font-size: 16px;
    }
    .reset-message p {
        padding: 0 0% 30px;
    }
    .sm-content-block,
    .sm-content-block-w1 {
        padding: 40px 30px;
    }
    .theme-btn {
        font-size: 18px;
    }
    .content-area-wrapper h3 {
        font-size: 20px;
    }
    .th-textbox {
        font-size: 18px;
    }
    .h-logo {
        width: 175px;
    }
    .h-user-pic {
        width: 70px;
    }
    .info-boxes-three-col .info-box-cont,
    .info-boxes-six-col .info-box-cont,
    .info-box-cont {
        width: 100%;
        max-width: 340px;
        margin: 25px auto;
    }
    .summary-col .theme-btn {
        min-width: auto;
    }
    .adjust-he1 {
        margin: 20px auto;
        display: block;
    }
    .hide-575px {
        display: none;
    }
    .sm-full-width {
        text-align: center;
    }
    .w-50-inner span,
    .w-50-inner .theme-btn,
    .sm-full-width .theme-btn,
    .sm-full-width a,
    .sm-full-width span {
        display: block;
        width: 100%;
    }
    .w-50-inner span,
    .sm-mb-25 {
        margin-bottom: 25px;
    }
    .form-section label {
        font-size: 17px;
    }
    .form-control .f-date-field {
        max-width: inherit;
    }
    .form-control span.m-lr-25 {
        margin: 10px;
    }
    .image-uploader .uploaded .uploaded-image {
        width: 90px;
        padding-bottom: 100px;
    }
    .image-uploader .uploaded .uploaded-image img {
        padding: 7px;
    }
    .image-uploader .uploaded .uploaded-image .delete-image {
        top: 10px;
        right: 10px;
    }
    .summary-row-eq-cols .summary-col {
        width: 100%;
    }
    .min-w-230 {
        min-width: inherit;
        width: 100%;
    }
    .btn-fix-mb * {
        display: block;
        margin-bottom: 25px;
    }
    .avis-row {
        flex-direction: column;
    }
    .avis-user-info,
    .avis-user-desc {
        width: 100%;
    }
    .avis-user-info {
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 419px) {
    .ad-filter-col label {
        display: block;
        text-align: left;
        width: auto;
        margin-bottom: 5px;
    }
    .ad-filter-field {
        width: 100%;
    }
    .theme-btn {
        font-size: 15px;
    }
    .user-name-pic span {
        text-align: left;
    }
    .summary-row .theme-btn {
        font-size: 14px;
    }
    .dates-wrap {
        flex-direction: column;
    }
    .form-control .dates-wrap .control-icon-right {
        width: 100%;
    }
    .min-w-280 {
        min-width: 100%;
    }
    .switch {
        display: block;
        margin-top: 30px;
        margin-left: auto;
    }
    .switch-on-off {
        margin-left: inherit;
        margin-top: inherit;
    }
    .ad-filter-field .d-flex {
        flex-direction: column;
    }
    .ad-filter-field .f-date-field {
        width: 100%;
    }
    .at-text {
        margin: 15px 0;
    }
    .circle-tooltip p {
        font-size: 13px;
    }
    .circle-tooltip {
        padding: 0 0px 0 80px;
    }
    .planning-datepicker {
        font-size: 15px;
        padding: 0 30px !important;
    }
    .summary-row-eq-cols {
        padding: 25px 20px;
    }
    .graph-col-size1 {
        width: 100%;
    }
}

.image-uploader {
    min-height: 10rem;
    border: 1px solid #d9d9d9;
    position: relative;
}
.image-uploader.drag-over {
    background-color: #f3f3f3;
}
/* .image-uploader input[type="file"] {
	width:0;
	height:0;
	position:absolute;
	z-index:-1;
	opacity:0
   } */
.image-uploader .upload-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.image-uploader .upload-text i {
    display: block;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.image-uploader .uploaded {
    padding: 0.5rem;
    line-height: 0;
}
.image-uploader .uploaded .uploaded-image {
    display: inline-block;
    width: 180px;
    padding-bottom: 190px;
    height: 0;
    position: relative;
    margin: 0.5rem;
    cursor: default;
}
.image-uploader .uploaded .uploaded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    padding: 15px;
    border: 1px dashed #e5e5e5;
}
.image-uploader .uploaded .uploaded-image .delete-image {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 50%;
    padding: 0.3rem;
    -webkit-appearance: none;
    border: none;
}
.image-uploader .uploaded .uploaded-image:hover .delete-image {
    display: block;
}
.image-uploader .uploaded .uploaded-image .delete-image i {
    color: #fff;
    font-size: 1.4rem;
}

.form-col-mix {
    width: 80% !important;
}

.clickable {
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay .modal-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-overlay h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    color: #333;
}

.modal-overlay .form {
    display: flex;
    flex-direction: column;
}

.modal-overlay .form-group {
    margin-bottom: 15px;
}

.modal-overlay .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.modal-overlay .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.modal-overlay .form-control.is-invalid {
    border: 1px solid red;
}

.modal-overlay .form-control:focus {
    border-color: #007bff;
    outline: none;
}

.modal-overlay .form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.modal-overlay .btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-overlay .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.modal-overlay .btn-primary:hover {
    background-color: #0056b3;
}

.modal-overlay .btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

.modal-overlay .btn-secondary:hover {
    background-color: #5a6268;
}
