@charset "UTF-8";
/*-----------------------------------------------------------------------------------

  @version         : 1.0
  @Template Name   : @
  @Template author : @onesttech

-----------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --remix-icon: "remixicon";
    --poppins: "Poppins", sans-serif;
}

/* Default Theme */
.default-theme {
    --ot-primary: #2b5d83;
    --ot-secondary: #2b5d83;
    --ot-tertiary: #fa5f1c;
    --ot-primary-rgb: 43, 93, 131;
    --ot-secondary-rgb: 40, 185, 94;
    --ot-tertiary-rgb: 240, 120, 60;
    --body-bg: #f6f6f6;
    --ot-primary-title: #484848;
    --ot-secondary-title: #555555;
    --ot-tertiary-title: #6f767e;
    --ot-primary-paragraph: #666666;
    --ot-secondary-paragraph: #999999;
    --ot-tertiary-paragraph: #6f767e;
    --ot-primary-btn: #2b5d83;
    --ot-secondary-btn: var(--ot-secondary);
    --ot-tertiary-btn: var(--ot-tertiary);
    /* border color */
    --ot-primary-border: #eeeeee;
    --ot-secondary-border: #f4f4f4;
    --red: #ff3030;
    --ratting-color: #ff9b26;
    --ratting-color-rgb: 255, 193, 7;
    --ot-bg-badge: #e9faf4;
    --ot-text-badge: #3b3b3b;
    --ot-date: #262626;
    --ot-bg-event-date-lightblue: #ecedff;
    --ot-bg-event-date-green: #d8f8e9;
    --ot-bg-event-date-orange: #fff1e0;
    --scroll-color-one: #554cbd46;
    --scroll-color-two: #f3f3f3;
    --white: #fff;
    --theme-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
    --theme-shadow2: 0px 5px 20px 0px rgba(88, 59, 255, 0.3);
    /* background color */
    --ot-bg-primary: #f0f3f5;
    --ot-bg-secondary: #ffffff;
    --ot-bg-secondary-opacity: rgba(255, 255, 255, 0.35);
    --ot-bg-tertiary: #ffffff;
    --ot-bg-progress: #e6e6e6;
    /* badge background color */
    --ot-bg-badge-success: #2b5d83;
    --ot-bg-badge-danger: #ff6a54;
    --ot-bg-badge-warning: #fdc400;
    --ot-bg-badge-primary: #1890ff;
    --ot-bg-badge-custom: #f1faff;
    /* badge text color */
    --ot-text-badge-success: #29d697;
    --ot-text-badge-danger: #ff6a54;
    --ot-text-badge-warning: #fdc400;
    --ot-text-badge-primary: #1890ff;
}

/* Dark Theme */
.dark-theme {
    --ot-primary: #2b5d83;
    --ot-secondary: #2b5d83;
    --ot-tertiary: #fa5f1c;
    --ot-primary-rgb: rgb(var(--ot-primary-rgb));
    --ot-secondary-rgb: 40, 185, 94;
    --ot-tertiary-rgb: 240, 120, 60;
    --body-bg: #07080a;
    --ot-primary-title: #eeeeee;
    --ot-secondary-title: #bbbbbb;
    --ot-tertiary-title: #6f767e;
    --ot-primary-paragraph: #bbbbbb;
    --ot-secondary-paragraph: #999999;
    --ot-tertiary-paragraph: #6f767e;
    /* border color */
    --ot-primary-border: #222222;
    --ot-secondary-border: #222222;
    --ot-primary-btn: #2b5d83;
    --ot-secondary-btn: var(--ot-secondary);
    --ot-tertiary-btn: var(--ot-tertiary);
    --red: #ff3030;
    --ratting-color: #ff9b26;
    --ratting-color-rgb: 255, 193, 7;
    --ot-bg-badge: #e9faf4;
    --ot-text-badge: #3b3b3b;
    --ot-date: #262626;
    --ot-bg-event-date-lightblue: #ecedff;
    --ot-bg-event-date-green: #d8f8e9;
    --ot-bg-event-date-orange: #fff1e0;
    --scroll-color-one: #554cbd46;
    --scroll-color-two: #f3f3f3;
    --white: #100f14;
    --theme-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
    --theme-shadow2: 0px 5px 20px 0px rgba(88, 59, 255, 0.3);
    /* background color */
    --ot-bg-primary: #f0f3f5;
    --ot-bg-secondary: #ffffff;
    --ot-bg-secondary-opacity: rgba(255, 255, 255, 0.35);
    --ot-bg-tertiary: #ffffff;
    --ot-bg-progress: #e6e6e6;
    /* badge background color */
    --ot-bg-badge-success: #2b5d83;
    --ot-bg-badge-danger: #ff6a54;
    --ot-bg-badge-warning: #fdc400;
    --ot-bg-badge-primary: #1890ff;
    --ot-bg-badge-custom: #f1faff;
    /* badge text color */
    --ot-text-badge-success: #29d697;
    --ot-text-badge-danger: #ff6a54;
    --ot-text-badge-warning: #fdc400;
    --ot-text-badge-primary: #1890ff;
}

body {
    background-color: var(--body-bg);
}

.color-effect {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(45%, var(--ot-primary)),
            color-stop(55%, var(--ot-primay-title)));
    background-image: linear-gradient(to right,
            var(--ot-primary) 45%,
            var(--ot-primay-title) 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
    cursor: pointer;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    -webkit-transition: 0.9s ease-out;
    transition: 0.9s ease-out;
}

.color-effect:hover {
    background-position: 0% 50%;
}

.theme-gradient {
    background: linear-gradient(115.87deg, #9a61e0 39.31%, #5b58ff 100.75%);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary {
    color: var(--ot-primary) !important;
}

.text-secondary {
    color: var(--ot-tertiary-title) !important;
}

.text-tertiary {
    color: var(--ot-tertiary) !important;
}

.text-success {
    color: #2b5d83 !important;
}

.text-danger {
    color: #d22d3d !important;
}

.text-info {
    color: #717171 !important;
}

.text-light {
    color: #e6edef !important;
}

.text-dark {
    color: #2c323f !important;
}

.text-white {
    color: var(--white) !important;
}

.text-warning {
    color: #e2c636 !important;
}

.text-title {
    color: var(--ot-primary-title) !important;
}

.text-orange {
    color: orange !important;
}

.text-primary-paragraph {
    color: var(--ot-primary-paragraph) !important;
}

.text-secondary-paragraph {
    color: var(--ot-secondary-paragraph) !important;
}

.text-tertiary-paragraph {
    color: var(--ot-tertiary-paragraph) !important;
}

/*-- padding --*/
.p-6 {
    padding: 6px !important;
}

.p-7 {
    padding: 7px !important;
}

.p-8 {
    padding: 8px !important;
}

.p-9 {
    padding: 9px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-11 {
    padding: 11px !important;
}

.p-12 {
    padding: 12px !important;
}

.p-13 {
    padding: 13px !important;
}

.p-14 {
    padding: 14px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-16 {
    padding: 16px !important;
}

.p-17 {
    padding: 17px !important;
}

.p-18 {
    padding: 18px !important;
}

.p-19 {
    padding: 19px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-21 {
    padding: 21px !important;
}

.p-22 {
    padding: 22px !important;
}

.p-23 {
    padding: 23px !important;
}

.p-24 {
    padding: 24px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-26 {
    padding: 26px !important;
}

.p-27 {
    padding: 27px !important;
}

.p-28 {
    padding: 28px !important;
}

.p-29 {
    padding: 29px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-31 {
    padding: 31px !important;
}

.p-32 {
    padding: 32px !important;
}

.p-33 {
    padding: 33px !important;
}

.p-34 {
    padding: 34px !important;
}

.p-35 {
    padding: 35px !important;
}

.p-36 {
    padding: 36px !important;
}

.p-37 {
    padding: 37px !important;
}

.p-38 {
    padding: 38px !important;
}

.p-39 {
    padding: 39px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-41 {
    padding: 41px !important;
}

.p-42 {
    padding: 42px !important;
}

.p-43 {
    padding: 43px !important;
}

.p-44 {
    padding: 44px !important;
}

.p-45 {
    padding: 45px !important;
}

.p-46 {
    padding: 46px !important;
}

.p-47 {
    padding: 47px !important;
}

.p-48 {
    padding: 48px !important;
}

.p-49 {
    padding: 49px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-51 {
    padding: 51px !important;
}

.p-52 {
    padding: 52px !important;
}

.p-53 {
    padding: 53px !important;
}

.p-54 {
    padding: 54px !important;
}

.p-55 {
    padding: 55px !important;
}

.p-56 {
    padding: 56px !important;
}

.p-57 {
    padding: 57px !important;
}

.p-58 {
    padding: 58px !important;
}

.p-59 {
    padding: 59px !important;
}

.p-60 {
    padding: 60px !important;
}

.p-61 {
    padding: 61px !important;
}

.p-62 {
    padding: 62px !important;
}

.p-63 {
    padding: 63px !important;
}

.p-64 {
    padding: 64px !important;
}

.p-65 {
    padding: 65px !important;
}

.p-66 {
    padding: 66px !important;
}

.p-67 {
    padding: 67px !important;
}

.p-68 {
    padding: 68px !important;
}

.p-69 {
    padding: 69px !important;
}

.p-70 {
    padding: 70px !important;
}

.p-71 {
    padding: 71px !important;
}

.p-72 {
    padding: 72px !important;
}

.p-73 {
    padding: 73px !important;
}

.p-74 {
    padding: 74px !important;
}

.p-75 {
    padding: 75px !important;
}

.p-76 {
    padding: 76px !important;
}

.p-77 {
    padding: 77px !important;
}

.p-78 {
    padding: 78px !important;
}

.p-79 {
    padding: 79px !important;
}

.p-80 {
    padding: 80px !important;
}

.p-81 {
    padding: 81px !important;
}

.p-82 {
    padding: 82px !important;
}

.p-83 {
    padding: 83px !important;
}

.p-84 {
    padding: 84px !important;
}

.p-85 {
    padding: 85px !important;
}

.p-86 {
    padding: 86px !important;
}

.p-87 {
    padding: 87px !important;
}

.p-88 {
    padding: 88px !important;
}

.p-89 {
    padding: 89px !important;
}

.p-90 {
    padding: 90px !important;
}

.p-91 {
    padding: 91px !important;
}

.p-92 {
    padding: 92px !important;
}

.p-93 {
    padding: 93px !important;
}

.p-94 {
    padding: 94px !important;
}

.p-95 {
    padding: 95px !important;
}

.p-96 {
    padding: 96px !important;
}

.p-97 {
    padding: 97px !important;
}

.p-98 {
    padding: 98px !important;
}

.p-99 {
    padding: 99px !important;
}

.p-100 {
    padding: 100px !important;
}

/*-- padding --*/
.mw-10 {
    min-width: 10px !important;
}

.mw-11 {
    min-width: 11px !important;
}

.mw-12 {
    min-width: 12px !important;
}

.mw-13 {
    min-width: 13px !important;
}

.mw-14 {
    min-width: 14px !important;
}

.mw-15 {
    min-width: 15px !important;
}

.mw-16 {
    min-width: 16px !important;
}

.mw-17 {
    min-width: 17px !important;
}

.mw-18 {
    min-width: 18px !important;
}

.mw-19 {
    min-width: 19px !important;
}

.mw-20 {
    min-width: 20px !important;
}

.mw-21 {
    min-width: 21px !important;
}

.mw-22 {
    min-width: 22px !important;
}

.mw-23 {
    min-width: 23px !important;
}

.mw-24 {
    min-width: 24px !important;
}

.mw-25 {
    min-width: 25px !important;
}

.mw-26 {
    min-width: 26px !important;
}

.mw-27 {
    min-width: 27px !important;
}

.mw-28 {
    min-width: 28px !important;
}

.mw-29 {
    min-width: 29px !important;
}

.mw-30 {
    min-width: 30px !important;
}

.mw-31 {
    min-width: 31px !important;
}

.mw-32 {
    min-width: 32px !important;
}

.mw-33 {
    min-width: 33px !important;
}

.mw-34 {
    min-width: 34px !important;
}

.mw-35 {
    min-width: 35px !important;
}

.mw-36 {
    min-width: 36px !important;
}

.mw-37 {
    min-width: 37px !important;
}

.mw-38 {
    min-width: 38px !important;
}

.mw-39 {
    min-width: 39px !important;
}

.mw-40 {
    min-width: 40px !important;
}

.mw-41 {
    min-width: 41px !important;
}

.mw-42 {
    min-width: 42px !important;
}

.mw-43 {
    min-width: 43px !important;
}

.mw-44 {
    min-width: 44px !important;
}

.mw-45 {
    min-width: 45px !important;
}

.mw-46 {
    min-width: 46px !important;
}

.mw-47 {
    min-width: 47px !important;
}

.mw-48 {
    min-width: 48px !important;
}

.mw-49 {
    min-width: 49px !important;
}

.mw-50 {
    min-width: 50px !important;
}

.mw-51 {
    min-width: 51px !important;
}

.mw-52 {
    min-width: 52px !important;
}

.mw-53 {
    min-width: 53px !important;
}

.mw-54 {
    min-width: 54px !important;
}

.mw-55 {
    min-width: 55px !important;
}

.mw-56 {
    min-width: 56px !important;
}

.mw-57 {
    min-width: 57px !important;
}

.mw-58 {
    min-width: 58px !important;
}

.mw-59 {
    min-width: 59px !important;
}

.mw-60 {
    min-width: 60px !important;
}

.mw-61 {
    min-width: 61px !important;
}

.mw-62 {
    min-width: 62px !important;
}

.mw-63 {
    min-width: 63px !important;
}

.mw-64 {
    min-width: 64px !important;
}

.mw-65 {
    min-width: 65px !important;
}

.mw-66 {
    min-width: 66px !important;
}

.mw-67 {
    min-width: 67px !important;
}

.mw-68 {
    min-width: 68px !important;
}

.mw-69 {
    min-width: 69px !important;
}

.mw-70 {
    min-width: 70px !important;
}

.mw-71 {
    min-width: 71px !important;
}

.mw-72 {
    min-width: 72px !important;
}

.mw-73 {
    min-width: 73px !important;
}

.mw-74 {
    min-width: 74px !important;
}

.mw-75 {
    min-width: 75px !important;
}

.mw-76 {
    min-width: 76px !important;
}

.mw-77 {
    min-width: 77px !important;
}

.mw-78 {
    min-width: 78px !important;
}

.mw-79 {
    min-width: 79px !important;
}

.mw-80 {
    min-width: 80px !important;
}

.mw-81 {
    min-width: 81px !important;
}

.mw-82 {
    min-width: 82px !important;
}

.mw-83 {
    min-width: 83px !important;
}

.mw-84 {
    min-width: 84px !important;
}

.mw-85 {
    min-width: 85px !important;
}

.mw-86 {
    min-width: 86px !important;
}

.mw-87 {
    min-width: 87px !important;
}

.mw-88 {
    min-width: 88px !important;
}

.mw-89 {
    min-width: 89px !important;
}

.mw-90 {
    min-width: 90px !important;
}

.mw-91 {
    min-width: 91px !important;
}

.mw-92 {
    min-width: 92px !important;
}

.mw-93 {
    min-width: 93px !important;
}

.mw-94 {
    min-width: 94px !important;
}

.mw-95 {
    min-width: 95px !important;
}

.mw-96 {
    min-width: 96px !important;
}

.mw-97 {
    min-width: 97px !important;
}

.mw-98 {
    min-width: 98px !important;
}

.mw-99 {
    min-width: 99px !important;
}

.mw-100 {
    min-width: 100px !important;
}

.mw-101 {
    min-width: 101px !important;
}

.mw-102 {
    min-width: 102px !important;
}

.mw-103 {
    min-width: 103px !important;
}

.mw-104 {
    min-width: 104px !important;
}

.mw-105 {
    min-width: 105px !important;
}

.mw-106 {
    min-width: 106px !important;
}

.mw-107 {
    min-width: 107px !important;
}

.mw-108 {
    min-width: 108px !important;
}

.mw-109 {
    min-width: 109px !important;
}

.mw-110 {
    min-width: 110px !important;
}

.mw-111 {
    min-width: 111px !important;
}

.mw-112 {
    min-width: 112px !important;
}

.mw-113 {
    min-width: 113px !important;
}

.mw-114 {
    min-width: 114px !important;
}

.mw-115 {
    min-width: 115px !important;
}

.mw-116 {
    min-width: 116px !important;
}

.mw-117 {
    min-width: 117px !important;
}

.mw-118 {
    min-width: 118px !important;
}

.mw-119 {
    min-width: 119px !important;
}

.mw-120 {
    min-width: 120px !important;
}

.mw-121 {
    min-width: 121px !important;
}

.mw-122 {
    min-width: 122px !important;
}

.mw-123 {
    min-width: 123px !important;
}

.mw-124 {
    min-width: 124px !important;
}

.mw-125 {
    min-width: 125px !important;
}

.mw-126 {
    min-width: 126px !important;
}

.mw-127 {
    min-width: 127px !important;
}

.mw-128 {
    min-width: 128px !important;
}

.mw-129 {
    min-width: 129px !important;
}

.mw-130 {
    min-width: 130px !important;
}

.mw-131 {
    min-width: 131px !important;
}

.mw-132 {
    min-width: 132px !important;
}

.mw-133 {
    min-width: 133px !important;
}

.mw-134 {
    min-width: 134px !important;
}

.mw-135 {
    min-width: 135px !important;
}

.mw-136 {
    min-width: 136px !important;
}

.mw-137 {
    min-width: 137px !important;
}

.mw-138 {
    min-width: 138px !important;
}

.mw-139 {
    min-width: 139px !important;
}

.mw-140 {
    min-width: 140px !important;
}

.mw-141 {
    min-width: 141px !important;
}

.mw-142 {
    min-width: 142px !important;
}

.mw-143 {
    min-width: 143px !important;
}

.mw-144 {
    min-width: 144px !important;
}

.mw-145 {
    min-width: 145px !important;
}

.mw-146 {
    min-width: 146px !important;
}

.mw-147 {
    min-width: 147px !important;
}

.mw-148 {
    min-width: 148px !important;
}

.mw-149 {
    min-width: 149px !important;
}

.mw-150 {
    min-width: 150px !important;
}

.mw-151 {
    min-width: 151px !important;
}

.mw-152 {
    min-width: 152px !important;
}

.mw-153 {
    min-width: 153px !important;
}

.mw-154 {
    min-width: 154px !important;
}

.mw-155 {
    min-width: 155px !important;
}

.mw-156 {
    min-width: 156px !important;
}

.mw-157 {
    min-width: 157px !important;
}

.mw-158 {
    min-width: 158px !important;
}

.mw-159 {
    min-width: 159px !important;
}

.mw-160 {
    min-width: 160px !important;
}

.mw-161 {
    min-width: 161px !important;
}

.mw-162 {
    min-width: 162px !important;
}

.mw-163 {
    min-width: 163px !important;
}

.mw-164 {
    min-width: 164px !important;
}

.mw-165 {
    min-width: 165px !important;
}

.mw-166 {
    min-width: 166px !important;
}

.mw-167 {
    min-width: 167px !important;
}

.mw-168 {
    min-width: 168px !important;
}

.mw-169 {
    min-width: 169px !important;
}

.mw-170 {
    min-width: 170px !important;
}

.mw-171 {
    min-width: 171px !important;
}

.mw-172 {
    min-width: 172px !important;
}

.mw-173 {
    min-width: 173px !important;
}

.mw-174 {
    min-width: 174px !important;
}

.mw-175 {
    min-width: 175px !important;
}

.mw-176 {
    min-width: 176px !important;
}

.mw-177 {
    min-width: 177px !important;
}

.mw-178 {
    min-width: 178px !important;
}

.mw-179 {
    min-width: 179px !important;
}

.mw-180 {
    min-width: 180px !important;
}

.mw-181 {
    min-width: 181px !important;
}

.mw-182 {
    min-width: 182px !important;
}

.mw-183 {
    min-width: 183px !important;
}

.mw-184 {
    min-width: 184px !important;
}

.mw-185 {
    min-width: 185px !important;
}

.mw-186 {
    min-width: 186px !important;
}

.mw-187 {
    min-width: 187px !important;
}

.mw-188 {
    min-width: 188px !important;
}

.mw-189 {
    min-width: 189px !important;
}

.mw-190 {
    min-width: 190px !important;
}

.mw-191 {
    min-width: 191px !important;
}

.mw-192 {
    min-width: 192px !important;
}

.mw-193 {
    min-width: 193px !important;
}

.mw-194 {
    min-width: 194px !important;
}

.mw-195 {
    min-width: 195px !important;
}

.mw-196 {
    min-width: 196px !important;
}

.mw-197 {
    min-width: 197px !important;
}

.mw-198 {
    min-width: 198px !important;
}

.mw-199 {
    min-width: 199px !important;
}

.mw-200 {
    min-width: 200px !important;
}

.mw-201 {
    min-width: 201px !important;
}

.mw-202 {
    min-width: 202px !important;
}

.mw-203 {
    min-width: 203px !important;
}

.mw-204 {
    min-width: 204px !important;
}

.mw-205 {
    min-width: 205px !important;
}

.mw-206 {
    min-width: 206px !important;
}

.mw-207 {
    min-width: 207px !important;
}

.mw-208 {
    min-width: 208px !important;
}

.mw-209 {
    min-width: 209px !important;
}

.mw-210 {
    min-width: 210px !important;
}

.mw-211 {
    min-width: 211px !important;
}

.mw-212 {
    min-width: 212px !important;
}

.mw-213 {
    min-width: 213px !important;
}

.mw-214 {
    min-width: 214px !important;
}

.mw-215 {
    min-width: 215px !important;
}

.mw-216 {
    min-width: 216px !important;
}

.mw-217 {
    min-width: 217px !important;
}

.mw-218 {
    min-width: 218px !important;
}

.mw-219 {
    min-width: 219px !important;
}

.mw-220 {
    min-width: 220px !important;
}

.mw-221 {
    min-width: 221px !important;
}

.mw-222 {
    min-width: 222px !important;
}

.mw-223 {
    min-width: 223px !important;
}

.mw-224 {
    min-width: 224px !important;
}

.mw-225 {
    min-width: 225px !important;
}

.mw-226 {
    min-width: 226px !important;
}

.mw-227 {
    min-width: 227px !important;
}

.mw-228 {
    min-width: 228px !important;
}

.mw-229 {
    min-width: 229px !important;
}

.mw-230 {
    min-width: 230px !important;
}

.mw-231 {
    min-width: 231px !important;
}

.mw-232 {
    min-width: 232px !important;
}

.mw-233 {
    min-width: 233px !important;
}

.mw-234 {
    min-width: 234px !important;
}

.mw-235 {
    min-width: 235px !important;
}

.mw-236 {
    min-width: 236px !important;
}

.mw-237 {
    min-width: 237px !important;
}

.mw-238 {
    min-width: 238px !important;
}

.mw-239 {
    min-width: 239px !important;
}

.mw-240 {
    min-width: 240px !important;
}

.mw-241 {
    min-width: 241px !important;
}

.mw-242 {
    min-width: 242px !important;
}

.mw-243 {
    min-width: 243px !important;
}

.mw-244 {
    min-width: 244px !important;
}

.mw-245 {
    min-width: 245px !important;
}

.mw-246 {
    min-width: 246px !important;
}

.mw-247 {
    min-width: 247px !important;
}

.mw-248 {
    min-width: 248px !important;
}

.mw-249 {
    min-width: 249px !important;
}

.mw-250 {
    min-width: 250px !important;
}

.mw-251 {
    min-width: 251px !important;
}

.mw-252 {
    min-width: 252px !important;
}

.mw-253 {
    min-width: 253px !important;
}

.mw-254 {
    min-width: 254px !important;
}

.mw-255 {
    min-width: 255px !important;
}

.mw-256 {
    min-width: 256px !important;
}

.mw-257 {
    min-width: 257px !important;
}

.mw-258 {
    min-width: 258px !important;
}

.mw-259 {
    min-width: 259px !important;
}

.mw-260 {
    min-width: 260px !important;
}

.mw-261 {
    min-width: 261px !important;
}

.mw-262 {
    min-width: 262px !important;
}

.mw-263 {
    min-width: 263px !important;
}

.mw-264 {
    min-width: 264px !important;
}

.mw-265 {
    min-width: 265px !important;
}

.mw-266 {
    min-width: 266px !important;
}

.mw-267 {
    min-width: 267px !important;
}

.mw-268 {
    min-width: 268px !important;
}

.mw-269 {
    min-width: 269px !important;
}

.mw-270 {
    min-width: 270px !important;
}

.mw-271 {
    min-width: 271px !important;
}

.mw-272 {
    min-width: 272px !important;
}

.mw-273 {
    min-width: 273px !important;
}

.mw-274 {
    min-width: 274px !important;
}

.mw-275 {
    min-width: 275px !important;
}

.mw-276 {
    min-width: 276px !important;
}

.mw-277 {
    min-width: 277px !important;
}

.mw-278 {
    min-width: 278px !important;
}

.mw-279 {
    min-width: 279px !important;
}

.mw-280 {
    min-width: 280px !important;
}

.mw-281 {
    min-width: 281px !important;
}

.mw-282 {
    min-width: 282px !important;
}

.mw-283 {
    min-width: 283px !important;
}

.mw-284 {
    min-width: 284px !important;
}

.mw-285 {
    min-width: 285px !important;
}

.mw-286 {
    min-width: 286px !important;
}

.mw-287 {
    min-width: 287px !important;
}

.mw-288 {
    min-width: 288px !important;
}

.mw-289 {
    min-width: 289px !important;
}

.mw-290 {
    min-width: 290px !important;
}

.mw-291 {
    min-width: 291px !important;
}

.mw-292 {
    min-width: 292px !important;
}

.mw-293 {
    min-width: 293px !important;
}

.mw-294 {
    min-width: 294px !important;
}

.mw-295 {
    min-width: 295px !important;
}

.mw-296 {
    min-width: 296px !important;
}

.mw-297 {
    min-width: 297px !important;
}

.mw-298 {
    min-width: 298px !important;
}

.mw-299 {
    min-width: 299px !important;
}

.mw-300 {
    min-width: 300px !important;
}

.mw-301 {
    min-width: 301px !important;
}

.mw-302 {
    min-width: 302px !important;
}

.mw-303 {
    min-width: 303px !important;
}

.mw-304 {
    min-width: 304px !important;
}

.mw-305 {
    min-width: 305px !important;
}

.mw-306 {
    min-width: 306px !important;
}

.mw-307 {
    min-width: 307px !important;
}

.mw-308 {
    min-width: 308px !important;
}

.mw-309 {
    min-width: 309px !important;
}

.mw-310 {
    min-width: 310px !important;
}

.mw-311 {
    min-width: 311px !important;
}

.mw-312 {
    min-width: 312px !important;
}

.mw-313 {
    min-width: 313px !important;
}

.mw-314 {
    min-width: 314px !important;
}

.mw-315 {
    min-width: 315px !important;
}

.mw-316 {
    min-width: 316px !important;
}

.mw-317 {
    min-width: 317px !important;
}

.mw-318 {
    min-width: 318px !important;
}

.mw-319 {
    min-width: 319px !important;
}

.mw-320 {
    min-width: 320px !important;
}

.mw-321 {
    min-width: 321px !important;
}

.mw-322 {
    min-width: 322px !important;
}

.mw-323 {
    min-width: 323px !important;
}

.mw-324 {
    min-width: 324px !important;
}

.mw-325 {
    min-width: 325px !important;
}

.mw-326 {
    min-width: 326px !important;
}

.mw-327 {
    min-width: 327px !important;
}

.mw-328 {
    min-width: 328px !important;
}

.mw-329 {
    min-width: 329px !important;
}

.mw-330 {
    min-width: 330px !important;
}

.mw-331 {
    min-width: 331px !important;
}

.mw-332 {
    min-width: 332px !important;
}

.mw-333 {
    min-width: 333px !important;
}

.mw-334 {
    min-width: 334px !important;
}

.mw-335 {
    min-width: 335px !important;
}

.mw-336 {
    min-width: 336px !important;
}

.mw-337 {
    min-width: 337px !important;
}

.mw-338 {
    min-width: 338px !important;
}

.mw-339 {
    min-width: 339px !important;
}

.mw-340 {
    min-width: 340px !important;
}

.mw-341 {
    min-width: 341px !important;
}

.mw-342 {
    min-width: 342px !important;
}

.mw-343 {
    min-width: 343px !important;
}

.mw-344 {
    min-width: 344px !important;
}

.mw-345 {
    min-width: 345px !important;
}

.mw-346 {
    min-width: 346px !important;
}

.mw-347 {
    min-width: 347px !important;
}

.mw-348 {
    min-width: 348px !important;
}

.mw-349 {
    min-width: 349px !important;
}

.mw-350 {
    min-width: 350px !important;
}

.mw-351 {
    min-width: 351px !important;
}

.mw-352 {
    min-width: 352px !important;
}

.mw-353 {
    min-width: 353px !important;
}

.mw-354 {
    min-width: 354px !important;
}

.mw-355 {
    min-width: 355px !important;
}

.mw-356 {
    min-width: 356px !important;
}

.mw-357 {
    min-width: 357px !important;
}

.mw-358 {
    min-width: 358px !important;
}

.mw-359 {
    min-width: 359px !important;
}

.mw-360 {
    min-width: 360px !important;
}

.mw-361 {
    min-width: 361px !important;
}

.mw-362 {
    min-width: 362px !important;
}

.mw-363 {
    min-width: 363px !important;
}

.mw-364 {
    min-width: 364px !important;
}

.mw-365 {
    min-width: 365px !important;
}

.mw-366 {
    min-width: 366px !important;
}

.mw-367 {
    min-width: 367px !important;
}

.mw-368 {
    min-width: 368px !important;
}

.mw-369 {
    min-width: 369px !important;
}

.mw-370 {
    min-width: 370px !important;
}

.mw-371 {
    min-width: 371px !important;
}

.mw-372 {
    min-width: 372px !important;
}

.mw-373 {
    min-width: 373px !important;
}

.mw-374 {
    min-width: 374px !important;
}

.mw-375 {
    min-width: 375px !important;
}

.mw-376 {
    min-width: 376px !important;
}

.mw-377 {
    min-width: 377px !important;
}

.mw-378 {
    min-width: 378px !important;
}

.mw-379 {
    min-width: 379px !important;
}

.mw-380 {
    min-width: 380px !important;
}

.mw-381 {
    min-width: 381px !important;
}

.mw-382 {
    min-width: 382px !important;
}

.mw-383 {
    min-width: 383px !important;
}

.mw-384 {
    min-width: 384px !important;
}

.mw-385 {
    min-width: 385px !important;
}

.mw-386 {
    min-width: 386px !important;
}

.mw-387 {
    min-width: 387px !important;
}

.mw-388 {
    min-width: 388px !important;
}

.mw-389 {
    min-width: 389px !important;
}

.mw-390 {
    min-width: 390px !important;
}

.mw-391 {
    min-width: 391px !important;
}

.mw-392 {
    min-width: 392px !important;
}

.mw-393 {
    min-width: 393px !important;
}

.mw-394 {
    min-width: 394px !important;
}

.mw-395 {
    min-width: 395px !important;
}

.mw-396 {
    min-width: 396px !important;
}

.mw-397 {
    min-width: 397px !important;
}

.mw-398 {
    min-width: 398px !important;
}

.mw-399 {
    min-width: 399px !important;
}

.mw-400 {
    min-width: 400px !important;
}

.mw-401 {
    min-width: 401px !important;
}

.mw-402 {
    min-width: 402px !important;
}

.mw-403 {
    min-width: 403px !important;
}

.mw-404 {
    min-width: 404px !important;
}

.mw-405 {
    min-width: 405px !important;
}

.mw-406 {
    min-width: 406px !important;
}

.mw-407 {
    min-width: 407px !important;
}

.mw-408 {
    min-width: 408px !important;
}

.mw-409 {
    min-width: 409px !important;
}

.mw-410 {
    min-width: 410px !important;
}

.mw-411 {
    min-width: 411px !important;
}

.mw-412 {
    min-width: 412px !important;
}

.mw-413 {
    min-width: 413px !important;
}

.mw-414 {
    min-width: 414px !important;
}

.mw-415 {
    min-width: 415px !important;
}

.mw-416 {
    min-width: 416px !important;
}

.mw-417 {
    min-width: 417px !important;
}

.mw-418 {
    min-width: 418px !important;
}

.mw-419 {
    min-width: 419px !important;
}

.mw-420 {
    min-width: 420px !important;
}

.mw-421 {
    min-width: 421px !important;
}

.mw-422 {
    min-width: 422px !important;
}

.mw-423 {
    min-width: 423px !important;
}

.mw-424 {
    min-width: 424px !important;
}

.mw-425 {
    min-width: 425px !important;
}

.mw-426 {
    min-width: 426px !important;
}

.mw-427 {
    min-width: 427px !important;
}

.mw-428 {
    min-width: 428px !important;
}

.mw-429 {
    min-width: 429px !important;
}

.mw-430 {
    min-width: 430px !important;
}

.mw-431 {
    min-width: 431px !important;
}

.mw-432 {
    min-width: 432px !important;
}

.mw-433 {
    min-width: 433px !important;
}

.mw-434 {
    min-width: 434px !important;
}

.mw-435 {
    min-width: 435px !important;
}

.mw-436 {
    min-width: 436px !important;
}

.mw-437 {
    min-width: 437px !important;
}

.mw-438 {
    min-width: 438px !important;
}

.mw-439 {
    min-width: 439px !important;
}

.mw-440 {
    min-width: 440px !important;
}

.mw-441 {
    min-width: 441px !important;
}

.mw-442 {
    min-width: 442px !important;
}

.mw-443 {
    min-width: 443px !important;
}

.mw-444 {
    min-width: 444px !important;
}

.mw-445 {
    min-width: 445px !important;
}

.mw-446 {
    min-width: 446px !important;
}

.mw-447 {
    min-width: 447px !important;
}

.mw-448 {
    min-width: 448px !important;
}

.mw-449 {
    min-width: 449px !important;
}

.mw-450 {
    min-width: 450px !important;
}

.mw-451 {
    min-width: 451px !important;
}

.mw-452 {
    min-width: 452px !important;
}

.mw-453 {
    min-width: 453px !important;
}

.mw-454 {
    min-width: 454px !important;
}

.mw-455 {
    min-width: 455px !important;
}

.mw-456 {
    min-width: 456px !important;
}

.mw-457 {
    min-width: 457px !important;
}

.mw-458 {
    min-width: 458px !important;
}

.mw-459 {
    min-width: 459px !important;
}

.mw-460 {
    min-width: 460px !important;
}

.mw-461 {
    min-width: 461px !important;
}

.mw-462 {
    min-width: 462px !important;
}

.mw-463 {
    min-width: 463px !important;
}

.mw-464 {
    min-width: 464px !important;
}

.mw-465 {
    min-width: 465px !important;
}

.mw-466 {
    min-width: 466px !important;
}

.mw-467 {
    min-width: 467px !important;
}

.mw-468 {
    min-width: 468px !important;
}

.mw-469 {
    min-width: 469px !important;
}

.mw-470 {
    min-width: 470px !important;
}

.mw-471 {
    min-width: 471px !important;
}

.mw-472 {
    min-width: 472px !important;
}

.mw-473 {
    min-width: 473px !important;
}

.mw-474 {
    min-width: 474px !important;
}

.mw-475 {
    min-width: 475px !important;
}

.mw-476 {
    min-width: 476px !important;
}

.mw-477 {
    min-width: 477px !important;
}

.mw-478 {
    min-width: 478px !important;
}

.mw-479 {
    min-width: 479px !important;
}

.mw-480 {
    min-width: 480px !important;
}

.mw-481 {
    min-width: 481px !important;
}

.mw-482 {
    min-width: 482px !important;
}

.mw-483 {
    min-width: 483px !important;
}

.mw-484 {
    min-width: 484px !important;
}

.mw-485 {
    min-width: 485px !important;
}

.mw-486 {
    min-width: 486px !important;
}

.mw-487 {
    min-width: 487px !important;
}

.mw-488 {
    min-width: 488px !important;
}

.mw-489 {
    min-width: 489px !important;
}

.mw-490 {
    min-width: 490px !important;
}

.mw-491 {
    min-width: 491px !important;
}

.mw-492 {
    min-width: 492px !important;
}

.mw-493 {
    min-width: 493px !important;
}

.mw-494 {
    min-width: 494px !important;
}

.mw-495 {
    min-width: 495px !important;
}

.mw-496 {
    min-width: 496px !important;
}

.mw-497 {
    min-width: 497px !important;
}

.mw-498 {
    min-width: 498px !important;
}

.mw-499 {
    min-width: 499px !important;
}

.mw-500 {
    min-width: 500px !important;
}

/*-- padding --*/
.top-0 {
    top: 0px !important;
}

.top-1 {
    top: 1px !important;
}

.top-2 {
    top: 2px !important;
}

.top-3 {
    top: 3px !important;
}

.top-4 {
    top: 4px !important;
}

.top-5 {
    top: 5px !important;
}

.top-6 {
    top: 6px !important;
}

.top-7 {
    top: 7px !important;
}

.top-8 {
    top: 8px !important;
}

.top-9 {
    top: 9px !important;
}

.top-10 {
    top: 10px !important;
}

.top-11 {
    top: 11px !important;
}

.top-12 {
    top: 12px !important;
}

.top-13 {
    top: 13px !important;
}

.top-14 {
    top: 14px !important;
}

.top-15 {
    top: 15px !important;
}

/*-- padding PX padding-left & padding-right --*/
.px-6 {
    padding-left: 6px;
    padding-right: 6px;
}

.px-7 {
    padding-left: 7px;
    padding-right: 7px;
}

.px-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.px-9 {
    padding-left: 9px;
    padding-right: 9px;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-11 {
    padding-left: 11px;
    padding-right: 11px;
}

.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-13 {
    padding-left: 13px;
    padding-right: 13px;
}

.px-14 {
    padding-left: 14px;
    padding-right: 14px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.px-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-17 {
    padding-left: 17px;
    padding-right: 17px;
}

.px-18 {
    padding-left: 18px;
    padding-right: 18px;
}

.px-19 {
    padding-left: 19px;
    padding-right: 19px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-21 {
    padding-left: 21px;
    padding-right: 21px;
}

.px-22 {
    padding-left: 22px;
    padding-right: 22px;
}

.px-23 {
    padding-left: 23px;
    padding-right: 23px;
}

.px-24 {
    padding-left: 24px;
    padding-right: 24px;
}

.px-25 {
    padding-left: 25px;
    padding-right: 25px;
}

.px-26 {
    padding-left: 26px;
    padding-right: 26px;
}

.px-27 {
    padding-left: 27px;
    padding-right: 27px;
}

.px-28 {
    padding-left: 28px;
    padding-right: 28px;
}

.px-29 {
    padding-left: 29px;
    padding-right: 29px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.px-31 {
    padding-left: 31px;
    padding-right: 31px;
}

.px-32 {
    padding-left: 32px;
    padding-right: 32px;
}

.px-33 {
    padding-left: 33px;
    padding-right: 33px;
}

.px-34 {
    padding-left: 34px;
    padding-right: 34px;
}

.px-35 {
    padding-left: 35px;
    padding-right: 35px;
}

.px-36 {
    padding-left: 36px;
    padding-right: 36px;
}

.px-37 {
    padding-left: 37px;
    padding-right: 37px;
}

.px-38 {
    padding-left: 38px;
    padding-right: 38px;
}

.px-39 {
    padding-left: 39px;
    padding-right: 39px;
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.px-41 {
    padding-left: 41px;
    padding-right: 41px;
}

.px-42 {
    padding-left: 42px;
    padding-right: 42px;
}

.px-43 {
    padding-left: 43px;
    padding-right: 43px;
}

.px-44 {
    padding-left: 44px;
    padding-right: 44px;
}

.px-45 {
    padding-left: 45px;
    padding-right: 45px;
}

.px-46 {
    padding-left: 46px;
    padding-right: 46px;
}

.px-47 {
    padding-left: 47px;
    padding-right: 47px;
}

.px-48 {
    padding-left: 48px;
    padding-right: 48px;
}

.px-49 {
    padding-left: 49px;
    padding-right: 49px;
}

.px-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.px-51 {
    padding-left: 51px;
    padding-right: 51px;
}

.px-52 {
    padding-left: 52px;
    padding-right: 52px;
}

.px-53 {
    padding-left: 53px;
    padding-right: 53px;
}

.px-54 {
    padding-left: 54px;
    padding-right: 54px;
}

.px-55 {
    padding-left: 55px;
    padding-right: 55px;
}

.px-56 {
    padding-left: 56px;
    padding-right: 56px;
}

.px-57 {
    padding-left: 57px;
    padding-right: 57px;
}

.px-58 {
    padding-left: 58px;
    padding-right: 58px;
}

.px-59 {
    padding-left: 59px;
    padding-right: 59px;
}

.px-60 {
    padding-left: 60px;
    padding-right: 60px;
}

.px-61 {
    padding-left: 61px;
    padding-right: 61px;
}

.px-62 {
    padding-left: 62px;
    padding-right: 62px;
}

.px-63 {
    padding-left: 63px;
    padding-right: 63px;
}

.px-64 {
    padding-left: 64px;
    padding-right: 64px;
}

.px-65 {
    padding-left: 65px;
    padding-right: 65px;
}

.px-66 {
    padding-left: 66px;
    padding-right: 66px;
}

.px-67 {
    padding-left: 67px;
    padding-right: 67px;
}

.px-68 {
    padding-left: 68px;
    padding-right: 68px;
}

.px-69 {
    padding-left: 69px;
    padding-right: 69px;
}

.px-70 {
    padding-left: 70px;
    padding-right: 70px;
}

.px-71 {
    padding-left: 71px;
    padding-right: 71px;
}

.px-72 {
    padding-left: 72px;
    padding-right: 72px;
}

.px-73 {
    padding-left: 73px;
    padding-right: 73px;
}

.px-74 {
    padding-left: 74px;
    padding-right: 74px;
}

.px-75 {
    padding-left: 75px;
    padding-right: 75px;
}

.px-76 {
    padding-left: 76px;
    padding-right: 76px;
}

.px-77 {
    padding-left: 77px;
    padding-right: 77px;
}

.px-78 {
    padding-left: 78px;
    padding-right: 78px;
}

.px-79 {
    padding-left: 79px;
    padding-right: 79px;
}

.px-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.px-81 {
    padding-left: 81px;
    padding-right: 81px;
}

.px-82 {
    padding-left: 82px;
    padding-right: 82px;
}

.px-83 {
    padding-left: 83px;
    padding-right: 83px;
}

.px-84 {
    padding-left: 84px;
    padding-right: 84px;
}

.px-85 {
    padding-left: 85px;
    padding-right: 85px;
}

.px-86 {
    padding-left: 86px;
    padding-right: 86px;
}

.px-87 {
    padding-left: 87px;
    padding-right: 87px;
}

.px-88 {
    padding-left: 88px;
    padding-right: 88px;
}

.px-89 {
    padding-left: 89px;
    padding-right: 89px;
}

.px-90 {
    padding-left: 90px;
    padding-right: 90px;
}

.px-91 {
    padding-left: 91px;
    padding-right: 91px;
}

.px-92 {
    padding-left: 92px;
    padding-right: 92px;
}

.px-93 {
    padding-left: 93px;
    padding-right: 93px;
}

.px-94 {
    padding-left: 94px;
    padding-right: 94px;
}

.px-95 {
    padding-left: 95px;
    padding-right: 95px;
}

.px-96 {
    padding-left: 96px;
    padding-right: 96px;
}

.px-97 {
    padding-left: 97px;
    padding-right: 97px;
}

.px-98 {
    padding-left: 98px;
    padding-right: 98px;
}

.px-99 {
    padding-left: 99px;
    padding-right: 99px;
}

.px-100 {
    padding-left: 100px;
    padding-right: 100px;
}

/*-- padding PX padding-left & padding-right --*/
.max-height-6 {
    max-height: 6px;
}

.max-height-7 {
    max-height: 7px;
}

.max-height-8 {
    max-height: 8px;
}

.max-height-9 {
    max-height: 9px;
}

.max-height-10 {
    max-height: 10px;
}

.max-height-11 {
    max-height: 11px;
}

.max-height-12 {
    max-height: 12px;
}

.max-height-13 {
    max-height: 13px;
}

.max-height-14 {
    max-height: 14px;
}

.max-height-15 {
    max-height: 15px;
}

.max-height-16 {
    max-height: 16px;
}

.max-height-17 {
    max-height: 17px;
}

.max-height-18 {
    max-height: 18px;
}

.max-height-19 {
    max-height: 19px;
}

.max-height-20 {
    max-height: 20px;
}

.max-height-21 {
    max-height: 21px;
}

.max-height-22 {
    max-height: 22px;
}

.max-height-23 {
    max-height: 23px;
}

.max-height-24 {
    max-height: 24px;
}

.max-height-25 {
    max-height: 25px;
}

.max-height-26 {
    max-height: 26px;
}

.max-height-27 {
    max-height: 27px;
}

.max-height-28 {
    max-height: 28px;
}

.max-height-29 {
    max-height: 29px;
}

.max-height-30 {
    max-height: 30px;
}

.max-height-31 {
    max-height: 31px;
}

.max-height-32 {
    max-height: 32px;
}

.max-height-33 {
    max-height: 33px;
}

.max-height-34 {
    max-height: 34px;
}

.max-height-35 {
    max-height: 35px;
}

.max-height-36 {
    max-height: 36px;
}

.max-height-37 {
    max-height: 37px;
}

.max-height-38 {
    max-height: 38px;
}

.max-height-39 {
    max-height: 39px;
}

.max-height-40 {
    max-height: 40px;
}

.max-height-41 {
    max-height: 41px;
}

.max-height-42 {
    max-height: 42px;
}

.max-height-43 {
    max-height: 43px;
}

.max-height-44 {
    max-height: 44px;
}

.max-height-45 {
    max-height: 45px;
}

.max-height-46 {
    max-height: 46px;
}

.max-height-47 {
    max-height: 47px;
}

.max-height-48 {
    max-height: 48px;
}

.max-height-49 {
    max-height: 49px;
}

.max-height-50 {
    max-height: 50px;
}

.max-height-51 {
    max-height: 51px;
}

.max-height-52 {
    max-height: 52px;
}

.max-height-53 {
    max-height: 53px;
}

.max-height-54 {
    max-height: 54px;
}

.max-height-55 {
    max-height: 55px;
}

.max-height-56 {
    max-height: 56px;
}

.max-height-57 {
    max-height: 57px;
}

.max-height-58 {
    max-height: 58px;
}

.max-height-59 {
    max-height: 59px;
}

.max-height-60 {
    max-height: 60px;
}

.max-height-61 {
    max-height: 61px;
}

.max-height-62 {
    max-height: 62px;
}

.max-height-63 {
    max-height: 63px;
}

.max-height-64 {
    max-height: 64px;
}

.max-height-65 {
    max-height: 65px;
}

.max-height-66 {
    max-height: 66px;
}

.max-height-67 {
    max-height: 67px;
}

.max-height-68 {
    max-height: 68px;
}

.max-height-69 {
    max-height: 69px;
}

.max-height-70 {
    max-height: 70px;
}

.max-height-71 {
    max-height: 71px;
}

.max-height-72 {
    max-height: 72px;
}

.max-height-73 {
    max-height: 73px;
}

.max-height-74 {
    max-height: 74px;
}

.max-height-75 {
    max-height: 75px;
}

.max-height-76 {
    max-height: 76px;
}

.max-height-77 {
    max-height: 77px;
}

.max-height-78 {
    max-height: 78px;
}

.max-height-79 {
    max-height: 79px;
}

.max-height-80 {
    max-height: 80px;
}

.max-height-81 {
    max-height: 81px;
}

.max-height-82 {
    max-height: 82px;
}

.max-height-83 {
    max-height: 83px;
}

.max-height-84 {
    max-height: 84px;
}

.max-height-85 {
    max-height: 85px;
}

.max-height-86 {
    max-height: 86px;
}

.max-height-87 {
    max-height: 87px;
}

.max-height-88 {
    max-height: 88px;
}

.max-height-89 {
    max-height: 89px;
}

.max-height-90 {
    max-height: 90px;
}

.max-height-91 {
    max-height: 91px;
}

.max-height-92 {
    max-height: 92px;
}

.max-height-93 {
    max-height: 93px;
}

.max-height-94 {
    max-height: 94px;
}

.max-height-95 {
    max-height: 95px;
}

.max-height-96 {
    max-height: 96px;
}

.max-height-97 {
    max-height: 97px;
}

.max-height-98 {
    max-height: 98px;
}

.max-height-99 {
    max-height: 99px;
}

.max-height-100 {
    max-height: 100px;
}

.max-height-101 {
    max-height: 101px;
}

.max-height-102 {
    max-height: 102px;
}

.max-height-103 {
    max-height: 103px;
}

.max-height-104 {
    max-height: 104px;
}

.max-height-105 {
    max-height: 105px;
}

.max-height-106 {
    max-height: 106px;
}

.max-height-107 {
    max-height: 107px;
}

.max-height-108 {
    max-height: 108px;
}

.max-height-109 {
    max-height: 109px;
}

.max-height-110 {
    max-height: 110px;
}

.max-height-111 {
    max-height: 111px;
}

.max-height-112 {
    max-height: 112px;
}

.max-height-113 {
    max-height: 113px;
}

.max-height-114 {
    max-height: 114px;
}

.max-height-115 {
    max-height: 115px;
}

.max-height-116 {
    max-height: 116px;
}

.max-height-117 {
    max-height: 117px;
}

.max-height-118 {
    max-height: 118px;
}

.max-height-119 {
    max-height: 119px;
}

.max-height-120 {
    max-height: 120px;
}

.max-height-121 {
    max-height: 121px;
}

.max-height-122 {
    max-height: 122px;
}

.max-height-123 {
    max-height: 123px;
}

.max-height-124 {
    max-height: 124px;
}

.max-height-125 {
    max-height: 125px;
}

.max-height-126 {
    max-height: 126px;
}

.max-height-127 {
    max-height: 127px;
}

.max-height-128 {
    max-height: 128px;
}

.max-height-129 {
    max-height: 129px;
}

.max-height-130 {
    max-height: 130px;
}

.max-height-131 {
    max-height: 131px;
}

.max-height-132 {
    max-height: 132px;
}

.max-height-133 {
    max-height: 133px;
}

.max-height-134 {
    max-height: 134px;
}

.max-height-135 {
    max-height: 135px;
}

.max-height-136 {
    max-height: 136px;
}

.max-height-137 {
    max-height: 137px;
}

.max-height-138 {
    max-height: 138px;
}

.max-height-139 {
    max-height: 139px;
}

.max-height-140 {
    max-height: 140px;
}

.max-height-141 {
    max-height: 141px;
}

.max-height-142 {
    max-height: 142px;
}

.max-height-143 {
    max-height: 143px;
}

.max-height-144 {
    max-height: 144px;
}

.max-height-145 {
    max-height: 145px;
}

.max-height-146 {
    max-height: 146px;
}

.max-height-147 {
    max-height: 147px;
}

.max-height-148 {
    max-height: 148px;
}

.max-height-149 {
    max-height: 149px;
}

.max-height-150 {
    max-height: 150px;
}

.max-height-151 {
    max-height: 151px;
}

.max-height-152 {
    max-height: 152px;
}

.max-height-153 {
    max-height: 153px;
}

.max-height-154 {
    max-height: 154px;
}

.max-height-155 {
    max-height: 155px;
}

.max-height-156 {
    max-height: 156px;
}

.max-height-157 {
    max-height: 157px;
}

.max-height-158 {
    max-height: 158px;
}

.max-height-159 {
    max-height: 159px;
}

.max-height-160 {
    max-height: 160px;
}

.max-height-161 {
    max-height: 161px;
}

.max-height-162 {
    max-height: 162px;
}

.max-height-163 {
    max-height: 163px;
}

.max-height-164 {
    max-height: 164px;
}

.max-height-165 {
    max-height: 165px;
}

.max-height-166 {
    max-height: 166px;
}

.max-height-167 {
    max-height: 167px;
}

.max-height-168 {
    max-height: 168px;
}

.max-height-169 {
    max-height: 169px;
}

.max-height-170 {
    max-height: 170px;
}

.max-height-171 {
    max-height: 171px;
}

.max-height-172 {
    max-height: 172px;
}

.max-height-173 {
    max-height: 173px;
}

.max-height-174 {
    max-height: 174px;
}

.max-height-175 {
    max-height: 175px;
}

.max-height-176 {
    max-height: 176px;
}

.max-height-177 {
    max-height: 177px;
}

.max-height-178 {
    max-height: 178px;
}

.max-height-179 {
    max-height: 179px;
}

.max-height-180 {
    max-height: 180px;
}

.max-height-181 {
    max-height: 181px;
}

.max-height-182 {
    max-height: 182px;
}

.max-height-183 {
    max-height: 183px;
}

.max-height-184 {
    max-height: 184px;
}

.max-height-185 {
    max-height: 185px;
}

.max-height-186 {
    max-height: 186px;
}

.max-height-187 {
    max-height: 187px;
}

.max-height-188 {
    max-height: 188px;
}

.max-height-189 {
    max-height: 189px;
}

.max-height-190 {
    max-height: 190px;
}

.max-height-191 {
    max-height: 191px;
}

.max-height-192 {
    max-height: 192px;
}

.max-height-193 {
    max-height: 193px;
}

.max-height-194 {
    max-height: 194px;
}

.max-height-195 {
    max-height: 195px;
}

.max-height-196 {
    max-height: 196px;
}

.max-height-197 {
    max-height: 197px;
}

.max-height-198 {
    max-height: 198px;
}

.max-height-199 {
    max-height: 199px;
}

.max-height-200 {
    max-height: 200px;
}

.max-height-201 {
    max-height: 201px;
}

.max-height-202 {
    max-height: 202px;
}

.max-height-203 {
    max-height: 203px;
}

.max-height-204 {
    max-height: 204px;
}

.max-height-205 {
    max-height: 205px;
}

.max-height-206 {
    max-height: 206px;
}

.max-height-207 {
    max-height: 207px;
}

.max-height-208 {
    max-height: 208px;
}

.max-height-209 {
    max-height: 209px;
}

.max-height-210 {
    max-height: 210px;
}

.max-height-211 {
    max-height: 211px;
}

.max-height-212 {
    max-height: 212px;
}

.max-height-213 {
    max-height: 213px;
}

.max-height-214 {
    max-height: 214px;
}

.max-height-215 {
    max-height: 215px;
}

.max-height-216 {
    max-height: 216px;
}

.max-height-217 {
    max-height: 217px;
}

.max-height-218 {
    max-height: 218px;
}

.max-height-219 {
    max-height: 219px;
}

.max-height-220 {
    max-height: 220px;
}

.max-height-221 {
    max-height: 221px;
}

.max-height-222 {
    max-height: 222px;
}

.max-height-223 {
    max-height: 223px;
}

.max-height-224 {
    max-height: 224px;
}

.max-height-225 {
    max-height: 225px;
}

.max-height-226 {
    max-height: 226px;
}

.max-height-227 {
    max-height: 227px;
}

.max-height-228 {
    max-height: 228px;
}

.max-height-229 {
    max-height: 229px;
}

.max-height-230 {
    max-height: 230px;
}

.max-height-231 {
    max-height: 231px;
}

.max-height-232 {
    max-height: 232px;
}

.max-height-233 {
    max-height: 233px;
}

.max-height-234 {
    max-height: 234px;
}

.max-height-235 {
    max-height: 235px;
}

.max-height-236 {
    max-height: 236px;
}

.max-height-237 {
    max-height: 237px;
}

.max-height-238 {
    max-height: 238px;
}

.max-height-239 {
    max-height: 239px;
}

.max-height-240 {
    max-height: 240px;
}

.max-height-241 {
    max-height: 241px;
}

.max-height-242 {
    max-height: 242px;
}

.max-height-243 {
    max-height: 243px;
}

.max-height-244 {
    max-height: 244px;
}

.max-height-245 {
    max-height: 245px;
}

.max-height-246 {
    max-height: 246px;
}

.max-height-247 {
    max-height: 247px;
}

.max-height-248 {
    max-height: 248px;
}

.max-height-249 {
    max-height: 249px;
}

.max-height-250 {
    max-height: 250px;
}

.max-height-251 {
    max-height: 251px;
}

.max-height-252 {
    max-height: 252px;
}

.max-height-253 {
    max-height: 253px;
}

.max-height-254 {
    max-height: 254px;
}

.max-height-255 {
    max-height: 255px;
}

.max-height-256 {
    max-height: 256px;
}

.max-height-257 {
    max-height: 257px;
}

.max-height-258 {
    max-height: 258px;
}

.max-height-259 {
    max-height: 259px;
}

.max-height-260 {
    max-height: 260px;
}

.max-height-261 {
    max-height: 261px;
}

.max-height-262 {
    max-height: 262px;
}

.max-height-263 {
    max-height: 263px;
}

.max-height-264 {
    max-height: 264px;
}

.max-height-265 {
    max-height: 265px;
}

.max-height-266 {
    max-height: 266px;
}

.max-height-267 {
    max-height: 267px;
}

.max-height-268 {
    max-height: 268px;
}

.max-height-269 {
    max-height: 269px;
}

.max-height-270 {
    max-height: 270px;
}

.max-height-271 {
    max-height: 271px;
}

.max-height-272 {
    max-height: 272px;
}

.max-height-273 {
    max-height: 273px;
}

.max-height-274 {
    max-height: 274px;
}

.max-height-275 {
    max-height: 275px;
}

.max-height-276 {
    max-height: 276px;
}

.max-height-277 {
    max-height: 277px;
}

.max-height-278 {
    max-height: 278px;
}

.max-height-279 {
    max-height: 279px;
}

.max-height-280 {
    max-height: 280px;
}

.max-height-281 {
    max-height: 281px;
}

.max-height-282 {
    max-height: 282px;
}

.max-height-283 {
    max-height: 283px;
}

.max-height-284 {
    max-height: 284px;
}

.max-height-285 {
    max-height: 285px;
}

.max-height-286 {
    max-height: 286px;
}

.max-height-287 {
    max-height: 287px;
}

.max-height-288 {
    max-height: 288px;
}

.max-height-289 {
    max-height: 289px;
}

.max-height-290 {
    max-height: 290px;
}

.max-height-291 {
    max-height: 291px;
}

.max-height-292 {
    max-height: 292px;
}

.max-height-293 {
    max-height: 293px;
}

.max-height-294 {
    max-height: 294px;
}

.max-height-295 {
    max-height: 295px;
}

.max-height-296 {
    max-height: 296px;
}

.max-height-297 {
    max-height: 297px;
}

.max-height-298 {
    max-height: 298px;
}

.max-height-299 {
    max-height: 299px;
}

.max-height-300 {
    max-height: 300px;
}

.max-height-301 {
    max-height: 301px;
}

.max-height-302 {
    max-height: 302px;
}

.max-height-303 {
    max-height: 303px;
}

.max-height-304 {
    max-height: 304px;
}

.max-height-305 {
    max-height: 305px;
}

.max-height-306 {
    max-height: 306px;
}

.max-height-307 {
    max-height: 307px;
}

.max-height-308 {
    max-height: 308px;
}

.max-height-309 {
    max-height: 309px;
}

.max-height-310 {
    max-height: 310px;
}

.max-height-311 {
    max-height: 311px;
}

.max-height-312 {
    max-height: 312px;
}

.max-height-313 {
    max-height: 313px;
}

.max-height-314 {
    max-height: 314px;
}

.max-height-315 {
    max-height: 315px;
}

.max-height-316 {
    max-height: 316px;
}

.max-height-317 {
    max-height: 317px;
}

.max-height-318 {
    max-height: 318px;
}

.max-height-319 {
    max-height: 319px;
}

.max-height-320 {
    max-height: 320px;
}

.max-height-321 {
    max-height: 321px;
}

.max-height-322 {
    max-height: 322px;
}

.max-height-323 {
    max-height: 323px;
}

.max-height-324 {
    max-height: 324px;
}

.max-height-325 {
    max-height: 325px;
}

.max-height-326 {
    max-height: 326px;
}

.max-height-327 {
    max-height: 327px;
}

.max-height-328 {
    max-height: 328px;
}

.max-height-329 {
    max-height: 329px;
}

.max-height-330 {
    max-height: 330px;
}

.max-height-331 {
    max-height: 331px;
}

.max-height-332 {
    max-height: 332px;
}

.max-height-333 {
    max-height: 333px;
}

.max-height-334 {
    max-height: 334px;
}

.max-height-335 {
    max-height: 335px;
}

.max-height-336 {
    max-height: 336px;
}

.max-height-337 {
    max-height: 337px;
}

.max-height-338 {
    max-height: 338px;
}

.max-height-339 {
    max-height: 339px;
}

.max-height-340 {
    max-height: 340px;
}

.max-height-341 {
    max-height: 341px;
}

.max-height-342 {
    max-height: 342px;
}

.max-height-343 {
    max-height: 343px;
}

.max-height-344 {
    max-height: 344px;
}

.max-height-345 {
    max-height: 345px;
}

.max-height-346 {
    max-height: 346px;
}

.max-height-347 {
    max-height: 347px;
}

.max-height-348 {
    max-height: 348px;
}

.max-height-349 {
    max-height: 349px;
}

.max-height-350 {
    max-height: 350px;
}

.max-height-351 {
    max-height: 351px;
}

.max-height-352 {
    max-height: 352px;
}

.max-height-353 {
    max-height: 353px;
}

.max-height-354 {
    max-height: 354px;
}

.max-height-355 {
    max-height: 355px;
}

.max-height-356 {
    max-height: 356px;
}

.max-height-357 {
    max-height: 357px;
}

.max-height-358 {
    max-height: 358px;
}

.max-height-359 {
    max-height: 359px;
}

.max-height-360 {
    max-height: 360px;
}

.max-height-361 {
    max-height: 361px;
}

.max-height-362 {
    max-height: 362px;
}

.max-height-363 {
    max-height: 363px;
}

.max-height-364 {
    max-height: 364px;
}

.max-height-365 {
    max-height: 365px;
}

.max-height-366 {
    max-height: 366px;
}

.max-height-367 {
    max-height: 367px;
}

.max-height-368 {
    max-height: 368px;
}

.max-height-369 {
    max-height: 369px;
}

.max-height-370 {
    max-height: 370px;
}

.max-height-371 {
    max-height: 371px;
}

.max-height-372 {
    max-height: 372px;
}

.max-height-373 {
    max-height: 373px;
}

.max-height-374 {
    max-height: 374px;
}

.max-height-375 {
    max-height: 375px;
}

.max-height-376 {
    max-height: 376px;
}

.max-height-377 {
    max-height: 377px;
}

.max-height-378 {
    max-height: 378px;
}

.max-height-379 {
    max-height: 379px;
}

.max-height-380 {
    max-height: 380px;
}

.max-height-381 {
    max-height: 381px;
}

.max-height-382 {
    max-height: 382px;
}

.max-height-383 {
    max-height: 383px;
}

.max-height-384 {
    max-height: 384px;
}

.max-height-385 {
    max-height: 385px;
}

.max-height-386 {
    max-height: 386px;
}

.max-height-387 {
    max-height: 387px;
}

.max-height-388 {
    max-height: 388px;
}

.max-height-389 {
    max-height: 389px;
}

.max-height-390 {
    max-height: 390px;
}

.max-height-391 {
    max-height: 391px;
}

.max-height-392 {
    max-height: 392px;
}

.max-height-393 {
    max-height: 393px;
}

.max-height-394 {
    max-height: 394px;
}

.max-height-395 {
    max-height: 395px;
}

.max-height-396 {
    max-height: 396px;
}

.max-height-397 {
    max-height: 397px;
}

.max-height-398 {
    max-height: 398px;
}

.max-height-399 {
    max-height: 399px;
}

.max-height-400 {
    max-height: 400px;
}

.max-height-401 {
    max-height: 401px;
}

.max-height-402 {
    max-height: 402px;
}

.max-height-403 {
    max-height: 403px;
}

.max-height-404 {
    max-height: 404px;
}

.max-height-405 {
    max-height: 405px;
}

.max-height-406 {
    max-height: 406px;
}

.max-height-407 {
    max-height: 407px;
}

.max-height-408 {
    max-height: 408px;
}

.max-height-409 {
    max-height: 409px;
}

.max-height-410 {
    max-height: 410px;
}

.max-height-411 {
    max-height: 411px;
}

.max-height-412 {
    max-height: 412px;
}

.max-height-413 {
    max-height: 413px;
}

.max-height-414 {
    max-height: 414px;
}

.max-height-415 {
    max-height: 415px;
}

.max-height-416 {
    max-height: 416px;
}

.max-height-417 {
    max-height: 417px;
}

.max-height-418 {
    max-height: 418px;
}

.max-height-419 {
    max-height: 419px;
}

.max-height-420 {
    max-height: 420px;
}

.max-height-421 {
    max-height: 421px;
}

.max-height-422 {
    max-height: 422px;
}

.max-height-423 {
    max-height: 423px;
}

.max-height-424 {
    max-height: 424px;
}

.max-height-425 {
    max-height: 425px;
}

.max-height-426 {
    max-height: 426px;
}

.max-height-427 {
    max-height: 427px;
}

.max-height-428 {
    max-height: 428px;
}

.max-height-429 {
    max-height: 429px;
}

.max-height-430 {
    max-height: 430px;
}

.max-height-431 {
    max-height: 431px;
}

.max-height-432 {
    max-height: 432px;
}

.max-height-433 {
    max-height: 433px;
}

.max-height-434 {
    max-height: 434px;
}

.max-height-435 {
    max-height: 435px;
}

.max-height-436 {
    max-height: 436px;
}

.max-height-437 {
    max-height: 437px;
}

.max-height-438 {
    max-height: 438px;
}

.max-height-439 {
    max-height: 439px;
}

.max-height-440 {
    max-height: 440px;
}

.max-height-441 {
    max-height: 441px;
}

.max-height-442 {
    max-height: 442px;
}

.max-height-443 {
    max-height: 443px;
}

.max-height-444 {
    max-height: 444px;
}

.max-height-445 {
    max-height: 445px;
}

.max-height-446 {
    max-height: 446px;
}

.max-height-447 {
    max-height: 447px;
}

.max-height-448 {
    max-height: 448px;
}

.max-height-449 {
    max-height: 449px;
}

.max-height-450 {
    max-height: 450px;
}

.max-height-451 {
    max-height: 451px;
}

.max-height-452 {
    max-height: 452px;
}

.max-height-453 {
    max-height: 453px;
}

.max-height-454 {
    max-height: 454px;
}

.max-height-455 {
    max-height: 455px;
}

.max-height-456 {
    max-height: 456px;
}

.max-height-457 {
    max-height: 457px;
}

.max-height-458 {
    max-height: 458px;
}

.max-height-459 {
    max-height: 459px;
}

.max-height-460 {
    max-height: 460px;
}

.max-height-461 {
    max-height: 461px;
}

.max-height-462 {
    max-height: 462px;
}

.max-height-463 {
    max-height: 463px;
}

.max-height-464 {
    max-height: 464px;
}

.max-height-465 {
    max-height: 465px;
}

.max-height-466 {
    max-height: 466px;
}

.max-height-467 {
    max-height: 467px;
}

.max-height-468 {
    max-height: 468px;
}

.max-height-469 {
    max-height: 469px;
}

.max-height-470 {
    max-height: 470px;
}

.max-height-471 {
    max-height: 471px;
}

.max-height-472 {
    max-height: 472px;
}

.max-height-473 {
    max-height: 473px;
}

.max-height-474 {
    max-height: 474px;
}

.max-height-475 {
    max-height: 475px;
}

.max-height-476 {
    max-height: 476px;
}

.max-height-477 {
    max-height: 477px;
}

.max-height-478 {
    max-height: 478px;
}

.max-height-479 {
    max-height: 479px;
}

.max-height-480 {
    max-height: 480px;
}

.max-height-481 {
    max-height: 481px;
}

.max-height-482 {
    max-height: 482px;
}

.max-height-483 {
    max-height: 483px;
}

.max-height-484 {
    max-height: 484px;
}

.max-height-485 {
    max-height: 485px;
}

.max-height-486 {
    max-height: 486px;
}

.max-height-487 {
    max-height: 487px;
}

.max-height-488 {
    max-height: 488px;
}

.max-height-489 {
    max-height: 489px;
}

.max-height-490 {
    max-height: 490px;
}

.max-height-491 {
    max-height: 491px;
}

.max-height-492 {
    max-height: 492px;
}

.max-height-493 {
    max-height: 493px;
}

.max-height-494 {
    max-height: 494px;
}

.max-height-495 {
    max-height: 495px;
}

.max-height-496 {
    max-height: 496px;
}

.max-height-497 {
    max-height: 497px;
}

.max-height-498 {
    max-height: 498px;
}

.max-height-499 {
    max-height: 499px;
}

.max-height-500 {
    max-height: 500px;
}

.max-height-501 {
    max-height: 501px;
}

.max-height-502 {
    max-height: 502px;
}

.max-height-503 {
    max-height: 503px;
}

.max-height-504 {
    max-height: 504px;
}

.max-height-505 {
    max-height: 505px;
}

.max-height-506 {
    max-height: 506px;
}

.max-height-507 {
    max-height: 507px;
}

.max-height-508 {
    max-height: 508px;
}

.max-height-509 {
    max-height: 509px;
}

.max-height-510 {
    max-height: 510px;
}

.max-height-511 {
    max-height: 511px;
}

.max-height-512 {
    max-height: 512px;
}

.max-height-513 {
    max-height: 513px;
}

.max-height-514 {
    max-height: 514px;
}

.max-height-515 {
    max-height: 515px;
}

.max-height-516 {
    max-height: 516px;
}

.max-height-517 {
    max-height: 517px;
}

.max-height-518 {
    max-height: 518px;
}

.max-height-519 {
    max-height: 519px;
}

.max-height-520 {
    max-height: 520px;
}

.max-height-521 {
    max-height: 521px;
}

.max-height-522 {
    max-height: 522px;
}

.max-height-523 {
    max-height: 523px;
}

.max-height-524 {
    max-height: 524px;
}

.max-height-525 {
    max-height: 525px;
}

.max-height-526 {
    max-height: 526px;
}

.max-height-527 {
    max-height: 527px;
}

.max-height-528 {
    max-height: 528px;
}

.max-height-529 {
    max-height: 529px;
}

.max-height-530 {
    max-height: 530px;
}

.max-height-531 {
    max-height: 531px;
}

.max-height-532 {
    max-height: 532px;
}

.max-height-533 {
    max-height: 533px;
}

.max-height-534 {
    max-height: 534px;
}

.max-height-535 {
    max-height: 535px;
}

.max-height-536 {
    max-height: 536px;
}

.max-height-537 {
    max-height: 537px;
}

.max-height-538 {
    max-height: 538px;
}

.max-height-539 {
    max-height: 539px;
}

.max-height-540 {
    max-height: 540px;
}

.max-height-541 {
    max-height: 541px;
}

.max-height-542 {
    max-height: 542px;
}

.max-height-543 {
    max-height: 543px;
}

.max-height-544 {
    max-height: 544px;
}

.max-height-545 {
    max-height: 545px;
}

.max-height-546 {
    max-height: 546px;
}

.max-height-547 {
    max-height: 547px;
}

.max-height-548 {
    max-height: 548px;
}

.max-height-549 {
    max-height: 549px;
}

.max-height-550 {
    max-height: 550px;
}

.max-height-551 {
    max-height: 551px;
}

.max-height-552 {
    max-height: 552px;
}

.max-height-553 {
    max-height: 553px;
}

.max-height-554 {
    max-height: 554px;
}

.max-height-555 {
    max-height: 555px;
}

.max-height-556 {
    max-height: 556px;
}

.max-height-557 {
    max-height: 557px;
}

.max-height-558 {
    max-height: 558px;
}

.max-height-559 {
    max-height: 559px;
}

.max-height-560 {
    max-height: 560px;
}

.max-height-561 {
    max-height: 561px;
}

.max-height-562 {
    max-height: 562px;
}

.max-height-563 {
    max-height: 563px;
}

.max-height-564 {
    max-height: 564px;
}

.max-height-565 {
    max-height: 565px;
}

.max-height-566 {
    max-height: 566px;
}

.max-height-567 {
    max-height: 567px;
}

.max-height-568 {
    max-height: 568px;
}

.max-height-569 {
    max-height: 569px;
}

.max-height-570 {
    max-height: 570px;
}

.max-height-571 {
    max-height: 571px;
}

.max-height-572 {
    max-height: 572px;
}

.max-height-573 {
    max-height: 573px;
}

.max-height-574 {
    max-height: 574px;
}

.max-height-575 {
    max-height: 575px;
}

.max-height-576 {
    max-height: 576px;
}

.max-height-577 {
    max-height: 577px;
}

.max-height-578 {
    max-height: 578px;
}

.max-height-579 {
    max-height: 579px;
}

.max-height-580 {
    max-height: 580px;
}

.max-height-581 {
    max-height: 581px;
}

.max-height-582 {
    max-height: 582px;
}

.max-height-583 {
    max-height: 583px;
}

.max-height-584 {
    max-height: 584px;
}

.max-height-585 {
    max-height: 585px;
}

.max-height-586 {
    max-height: 586px;
}

.max-height-587 {
    max-height: 587px;
}

.max-height-588 {
    max-height: 588px;
}

.max-height-589 {
    max-height: 589px;
}

.max-height-590 {
    max-height: 590px;
}

.max-height-591 {
    max-height: 591px;
}

.max-height-592 {
    max-height: 592px;
}

.max-height-593 {
    max-height: 593px;
}

.max-height-594 {
    max-height: 594px;
}

.max-height-595 {
    max-height: 595px;
}

.max-height-596 {
    max-height: 596px;
}

.max-height-597 {
    max-height: 597px;
}

.max-height-598 {
    max-height: 598px;
}

.max-height-599 {
    max-height: 599px;
}

.max-height-600 {
    max-height: 600px;
}

.max-height-601 {
    max-height: 601px;
}

.max-height-602 {
    max-height: 602px;
}

.max-height-603 {
    max-height: 603px;
}

.max-height-604 {
    max-height: 604px;
}

.max-height-605 {
    max-height: 605px;
}

.max-height-606 {
    max-height: 606px;
}

.max-height-607 {
    max-height: 607px;
}

.max-height-608 {
    max-height: 608px;
}

.max-height-609 {
    max-height: 609px;
}

.max-height-610 {
    max-height: 610px;
}

.max-height-611 {
    max-height: 611px;
}

.max-height-612 {
    max-height: 612px;
}

.max-height-613 {
    max-height: 613px;
}

.max-height-614 {
    max-height: 614px;
}

.max-height-615 {
    max-height: 615px;
}

.max-height-616 {
    max-height: 616px;
}

.max-height-617 {
    max-height: 617px;
}

.max-height-618 {
    max-height: 618px;
}

.max-height-619 {
    max-height: 619px;
}

.max-height-620 {
    max-height: 620px;
}

.max-height-621 {
    max-height: 621px;
}

.max-height-622 {
    max-height: 622px;
}

.max-height-623 {
    max-height: 623px;
}

.max-height-624 {
    max-height: 624px;
}

.max-height-625 {
    max-height: 625px;
}

.max-height-626 {
    max-height: 626px;
}

.max-height-627 {
    max-height: 627px;
}

.max-height-628 {
    max-height: 628px;
}

.max-height-629 {
    max-height: 629px;
}

.max-height-630 {
    max-height: 630px;
}

.max-height-631 {
    max-height: 631px;
}

.max-height-632 {
    max-height: 632px;
}

.max-height-633 {
    max-height: 633px;
}

.max-height-634 {
    max-height: 634px;
}

.max-height-635 {
    max-height: 635px;
}

.max-height-636 {
    max-height: 636px;
}

.max-height-637 {
    max-height: 637px;
}

.max-height-638 {
    max-height: 638px;
}

.max-height-639 {
    max-height: 639px;
}

.max-height-640 {
    max-height: 640px;
}

.max-height-641 {
    max-height: 641px;
}

.max-height-642 {
    max-height: 642px;
}

.max-height-643 {
    max-height: 643px;
}

.max-height-644 {
    max-height: 644px;
}

.max-height-645 {
    max-height: 645px;
}

.max-height-646 {
    max-height: 646px;
}

.max-height-647 {
    max-height: 647px;
}

.max-height-648 {
    max-height: 648px;
}

.max-height-649 {
    max-height: 649px;
}

.max-height-650 {
    max-height: 650px;
}

.max-height-651 {
    max-height: 651px;
}

.max-height-652 {
    max-height: 652px;
}

.max-height-653 {
    max-height: 653px;
}

.max-height-654 {
    max-height: 654px;
}

.max-height-655 {
    max-height: 655px;
}

.max-height-656 {
    max-height: 656px;
}

.max-height-657 {
    max-height: 657px;
}

.max-height-658 {
    max-height: 658px;
}

.max-height-659 {
    max-height: 659px;
}

.max-height-660 {
    max-height: 660px;
}

.max-height-661 {
    max-height: 661px;
}

.max-height-662 {
    max-height: 662px;
}

.max-height-663 {
    max-height: 663px;
}

.max-height-664 {
    max-height: 664px;
}

.max-height-665 {
    max-height: 665px;
}

.max-height-666 {
    max-height: 666px;
}

.max-height-667 {
    max-height: 667px;
}

.max-height-668 {
    max-height: 668px;
}

.max-height-669 {
    max-height: 669px;
}

.max-height-670 {
    max-height: 670px;
}

.max-height-671 {
    max-height: 671px;
}

.max-height-672 {
    max-height: 672px;
}

.max-height-673 {
    max-height: 673px;
}

.max-height-674 {
    max-height: 674px;
}

.max-height-675 {
    max-height: 675px;
}

.max-height-676 {
    max-height: 676px;
}

.max-height-677 {
    max-height: 677px;
}

.max-height-678 {
    max-height: 678px;
}

.max-height-679 {
    max-height: 679px;
}

.max-height-680 {
    max-height: 680px;
}

.max-height-681 {
    max-height: 681px;
}

.max-height-682 {
    max-height: 682px;
}

.max-height-683 {
    max-height: 683px;
}

.max-height-684 {
    max-height: 684px;
}

.max-height-685 {
    max-height: 685px;
}

.max-height-686 {
    max-height: 686px;
}

.max-height-687 {
    max-height: 687px;
}

.max-height-688 {
    max-height: 688px;
}

.max-height-689 {
    max-height: 689px;
}

.max-height-690 {
    max-height: 690px;
}

.max-height-691 {
    max-height: 691px;
}

.max-height-692 {
    max-height: 692px;
}

.max-height-693 {
    max-height: 693px;
}

.max-height-694 {
    max-height: 694px;
}

.max-height-695 {
    max-height: 695px;
}

.max-height-696 {
    max-height: 696px;
}

.max-height-697 {
    max-height: 697px;
}

.max-height-698 {
    max-height: 698px;
}

.max-height-699 {
    max-height: 699px;
}

.max-height-700 {
    max-height: 700px;
}

.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-300 {
    font-weight: 300 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}

/*-- Margin Padding --*/
/*-- Margin To-Bottom-Left-Right --*/
.mt-6 {
    margin-top: 6px;
}

.mb-6 {
    margin-bottom: 6px;
}

.ml-6 {
    margin-left: 6px;
}

.mr-6 {
    margin-right: 6px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-6 {
    padding-top: 6px;
}

.pb-6 {
    padding-bottom: 6px;
}

.pl-6 {
    padding-left: 6px;
}

.pr-6 {
    padding-right: 6px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-7 {
    margin-top: 7px;
}

.mb-7 {
    margin-bottom: 7px;
}

.ml-7 {
    margin-left: 7px;
}

.mr-7 {
    margin-right: 7px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-7 {
    padding-top: 7px;
}

.pb-7 {
    padding-bottom: 7px;
}

.pl-7 {
    padding-left: 7px;
}

.pr-7 {
    padding-right: 7px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-8 {
    margin-top: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}

.ml-8 {
    margin-left: 8px;
}

.mr-8 {
    margin-right: 8px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-8 {
    padding-top: 8px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pl-8 {
    padding-left: 8px;
}

.pr-8 {
    padding-right: 8px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-9 {
    margin-top: 9px;
}

.mb-9 {
    margin-bottom: 9px;
}

.ml-9 {
    margin-left: 9px;
}

.mr-9 {
    margin-right: 9px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-9 {
    padding-top: 9px;
}

.pb-9 {
    padding-bottom: 9px;
}

.pl-9 {
    padding-left: 9px;
}

.pr-9 {
    padding-right: 9px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.pr-10 {
    padding-right: 10px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-11 {
    margin-top: 11px;
}

.mb-11 {
    margin-bottom: 11px;
}

.ml-11 {
    margin-left: 11px;
}

.mr-11 {
    margin-right: 11px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-11 {
    padding-top: 11px;
}

.pb-11 {
    padding-bottom: 11px;
}

.pl-11 {
    padding-left: 11px;
}

.pr-11 {
    padding-right: 11px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-12 {
    margin-top: 12px;
}

.mb-12 {
    margin-bottom: 12px;
}

.ml-12 {
    margin-left: 12px;
}

.mr-12 {
    margin-right: 12px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-12 {
    padding-top: 12px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pl-12 {
    padding-left: 12px;
}

.pr-12 {
    padding-right: 12px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-13 {
    margin-top: 13px;
}

.mb-13 {
    margin-bottom: 13px;
}

.ml-13 {
    margin-left: 13px;
}

.mr-13 {
    margin-right: 13px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-13 {
    padding-top: 13px;
}

.pb-13 {
    padding-bottom: 13px;
}

.pl-13 {
    padding-left: 13px;
}

.pr-13 {
    padding-right: 13px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-14 {
    margin-top: 14px;
}

.mb-14 {
    margin-bottom: 14px;
}

.ml-14 {
    margin-left: 14px;
}

.mr-14 {
    margin-right: 14px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-14 {
    padding-top: 14px;
}

.pb-14 {
    padding-bottom: 14px;
}

.pl-14 {
    padding-left: 14px;
}

.pr-14 {
    padding-right: 14px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pl-15 {
    padding-left: 15px;
}

.pr-15 {
    padding-right: 15px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-16 {
    margin-top: 16px;
}

.mb-16 {
    margin-bottom: 16px;
}

.ml-16 {
    margin-left: 16px;
}

.mr-16 {
    margin-right: 16px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-16 {
    padding-top: 16px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pl-16 {
    padding-left: 16px;
}

.pr-16 {
    padding-right: 16px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-17 {
    margin-top: 17px;
}

.mb-17 {
    margin-bottom: 17px;
}

.ml-17 {
    margin-left: 17px;
}

.mr-17 {
    margin-right: 17px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-17 {
    padding-top: 17px;
}

.pb-17 {
    padding-bottom: 17px;
}

.pl-17 {
    padding-left: 17px;
}

.pr-17 {
    padding-right: 17px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-18 {
    margin-top: 18px;
}

.mb-18 {
    margin-bottom: 18px;
}

.ml-18 {
    margin-left: 18px;
}

.mr-18 {
    margin-right: 18px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-18 {
    padding-top: 18px;
}

.pb-18 {
    padding-bottom: 18px;
}

.pl-18 {
    padding-left: 18px;
}

.pr-18 {
    padding-right: 18px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-19 {
    margin-top: 19px;
}

.mb-19 {
    margin-bottom: 19px;
}

.ml-19 {
    margin-left: 19px;
}

.mr-19 {
    margin-right: 19px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-19 {
    padding-top: 19px;
}

.pb-19 {
    padding-bottom: 19px;
}

.pl-19 {
    padding-left: 19px;
}

.pr-19 {
    padding-right: 19px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-20 {
    padding-right: 20px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-21 {
    margin-top: 21px;
}

.mb-21 {
    margin-bottom: 21px;
}

.ml-21 {
    margin-left: 21px;
}

.mr-21 {
    margin-right: 21px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-21 {
    padding-top: 21px;
}

.pb-21 {
    padding-bottom: 21px;
}

.pl-21 {
    padding-left: 21px;
}

.pr-21 {
    padding-right: 21px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-22 {
    margin-top: 22px;
}

.mb-22 {
    margin-bottom: 22px;
}

.ml-22 {
    margin-left: 22px;
}

.mr-22 {
    margin-right: 22px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-22 {
    padding-top: 22px;
}

.pb-22 {
    padding-bottom: 22px;
}

.pl-22 {
    padding-left: 22px;
}

.pr-22 {
    padding-right: 22px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-23 {
    margin-top: 23px;
}

.mb-23 {
    margin-bottom: 23px;
}

.ml-23 {
    margin-left: 23px;
}

.mr-23 {
    margin-right: 23px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-23 {
    padding-top: 23px;
}

.pb-23 {
    padding-bottom: 23px;
}

.pl-23 {
    padding-left: 23px;
}

.pr-23 {
    padding-right: 23px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.ml-24 {
    margin-left: 24px;
}

.mr-24 {
    margin-right: 24px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-24 {
    padding-top: 24px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pl-24 {
    padding-left: 24px;
}

.pr-24 {
    padding-right: 24px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.ml-25 {
    margin-left: 25px;
}

.mr-25 {
    margin-right: 25px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pl-25 {
    padding-left: 25px;
}

.pr-25 {
    padding-right: 25px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-26 {
    margin-top: 26px;
}

.mb-26 {
    margin-bottom: 26px;
}

.ml-26 {
    margin-left: 26px;
}

.mr-26 {
    margin-right: 26px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-26 {
    padding-top: 26px;
}

.pb-26 {
    padding-bottom: 26px;
}

.pl-26 {
    padding-left: 26px;
}

.pr-26 {
    padding-right: 26px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-27 {
    margin-top: 27px;
}

.mb-27 {
    margin-bottom: 27px;
}

.ml-27 {
    margin-left: 27px;
}

.mr-27 {
    margin-right: 27px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-27 {
    padding-top: 27px;
}

.pb-27 {
    padding-bottom: 27px;
}

.pl-27 {
    padding-left: 27px;
}

.pr-27 {
    padding-right: 27px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-28 {
    margin-top: 28px;
}

.mb-28 {
    margin-bottom: 28px;
}

.ml-28 {
    margin-left: 28px;
}

.mr-28 {
    margin-right: 28px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-28 {
    padding-top: 28px;
}

.pb-28 {
    padding-bottom: 28px;
}

.pl-28 {
    padding-left: 28px;
}

.pr-28 {
    padding-right: 28px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-29 {
    margin-top: 29px;
}

.mb-29 {
    margin-bottom: 29px;
}

.ml-29 {
    margin-left: 29px;
}

.mr-29 {
    margin-right: 29px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-29 {
    padding-top: 29px;
}

.pb-29 {
    padding-bottom: 29px;
}

.pl-29 {
    padding-left: 29px;
}

.pr-29 {
    padding-right: 29px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-30 {
    margin-right: 30px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-31 {
    margin-top: 31px;
}

.mb-31 {
    margin-bottom: 31px;
}

.ml-31 {
    margin-left: 31px;
}

.mr-31 {
    margin-right: 31px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-31 {
    padding-top: 31px;
}

.pb-31 {
    padding-bottom: 31px;
}

.pl-31 {
    padding-left: 31px;
}

.pr-31 {
    padding-right: 31px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.ml-32 {
    margin-left: 32px;
}

.mr-32 {
    margin-right: 32px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-32 {
    padding-top: 32px;
}

.pb-32 {
    padding-bottom: 32px;
}

.pl-32 {
    padding-left: 32px;
}

.pr-32 {
    padding-right: 32px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-33 {
    margin-top: 33px;
}

.mb-33 {
    margin-bottom: 33px;
}

.ml-33 {
    margin-left: 33px;
}

.mr-33 {
    margin-right: 33px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-33 {
    padding-top: 33px;
}

.pb-33 {
    padding-bottom: 33px;
}

.pl-33 {
    padding-left: 33px;
}

.pr-33 {
    padding-right: 33px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-34 {
    margin-top: 34px;
}

.mb-34 {
    margin-bottom: 34px;
}

.ml-34 {
    margin-left: 34px;
}

.mr-34 {
    margin-right: 34px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-34 {
    padding-top: 34px;
}

.pb-34 {
    padding-bottom: 34px;
}

.pl-34 {
    padding-left: 34px;
}

.pr-34 {
    padding-right: 34px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-35 {
    margin-top: 35px;
}

.mb-35 {
    margin-bottom: 35px;
}

.ml-35 {
    margin-left: 35px;
}

.mr-35 {
    margin-right: 35px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-35 {
    padding-top: 35px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pl-35 {
    padding-left: 35px;
}

.pr-35 {
    padding-right: 35px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-36 {
    margin-top: 36px;
}

.mb-36 {
    margin-bottom: 36px;
}

.ml-36 {
    margin-left: 36px;
}

.mr-36 {
    margin-right: 36px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-36 {
    padding-top: 36px;
}

.pb-36 {
    padding-bottom: 36px;
}

.pl-36 {
    padding-left: 36px;
}

.pr-36 {
    padding-right: 36px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-37 {
    margin-top: 37px;
}

.mb-37 {
    margin-bottom: 37px;
}

.ml-37 {
    margin-left: 37px;
}

.mr-37 {
    margin-right: 37px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-37 {
    padding-top: 37px;
}

.pb-37 {
    padding-bottom: 37px;
}

.pl-37 {
    padding-left: 37px;
}

.pr-37 {
    padding-right: 37px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-38 {
    margin-top: 38px;
}

.mb-38 {
    margin-bottom: 38px;
}

.ml-38 {
    margin-left: 38px;
}

.mr-38 {
    margin-right: 38px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-38 {
    padding-top: 38px;
}

.pb-38 {
    padding-bottom: 38px;
}

.pl-38 {
    padding-left: 38px;
}

.pr-38 {
    padding-right: 38px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-39 {
    margin-top: 39px;
}

.mb-39 {
    margin-bottom: 39px;
}

.ml-39 {
    margin-left: 39px;
}

.mr-39 {
    margin-right: 39px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-39 {
    padding-top: 39px;
}

.pb-39 {
    padding-bottom: 39px;
}

.pl-39 {
    padding-left: 39px;
}

.pr-39 {
    padding-right: 39px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.ml-40 {
    margin-left: 40px;
}

.mr-40 {
    margin-right: 40px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pl-40 {
    padding-left: 40px;
}

.pr-40 {
    padding-right: 40px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-41 {
    margin-top: 41px;
}

.mb-41 {
    margin-bottom: 41px;
}

.ml-41 {
    margin-left: 41px;
}

.mr-41 {
    margin-right: 41px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-41 {
    padding-top: 41px;
}

.pb-41 {
    padding-bottom: 41px;
}

.pl-41 {
    padding-left: 41px;
}

.pr-41 {
    padding-right: 41px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-42 {
    margin-top: 42px;
}

.mb-42 {
    margin-bottom: 42px;
}

.ml-42 {
    margin-left: 42px;
}

.mr-42 {
    margin-right: 42px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-42 {
    padding-top: 42px;
}

.pb-42 {
    padding-bottom: 42px;
}

.pl-42 {
    padding-left: 42px;
}

.pr-42 {
    padding-right: 42px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-43 {
    margin-top: 43px;
}

.mb-43 {
    margin-bottom: 43px;
}

.ml-43 {
    margin-left: 43px;
}

.mr-43 {
    margin-right: 43px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-43 {
    padding-top: 43px;
}

.pb-43 {
    padding-bottom: 43px;
}

.pl-43 {
    padding-left: 43px;
}

.pr-43 {
    padding-right: 43px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-44 {
    margin-top: 44px;
}

.mb-44 {
    margin-bottom: 44px;
}

.ml-44 {
    margin-left: 44px;
}

.mr-44 {
    margin-right: 44px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-44 {
    padding-top: 44px;
}

.pb-44 {
    padding-bottom: 44px;
}

.pl-44 {
    padding-left: 44px;
}

.pr-44 {
    padding-right: 44px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-45 {
    margin-top: 45px;
}

.mb-45 {
    margin-bottom: 45px;
}

.ml-45 {
    margin-left: 45px;
}

.mr-45 {
    margin-right: 45px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-45 {
    padding-top: 45px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pl-45 {
    padding-left: 45px;
}

.pr-45 {
    padding-right: 45px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-46 {
    margin-top: 46px;
}

.mb-46 {
    margin-bottom: 46px;
}

.ml-46 {
    margin-left: 46px;
}

.mr-46 {
    margin-right: 46px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-46 {
    padding-top: 46px;
}

.pb-46 {
    padding-bottom: 46px;
}

.pl-46 {
    padding-left: 46px;
}

.pr-46 {
    padding-right: 46px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-47 {
    margin-top: 47px;
}

.mb-47 {
    margin-bottom: 47px;
}

.ml-47 {
    margin-left: 47px;
}

.mr-47 {
    margin-right: 47px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-47 {
    padding-top: 47px;
}

.pb-47 {
    padding-bottom: 47px;
}

.pl-47 {
    padding-left: 47px;
}

.pr-47 {
    padding-right: 47px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-48 {
    margin-top: 48px;
}

.mb-48 {
    margin-bottom: 48px;
}

.ml-48 {
    margin-left: 48px;
}

.mr-48 {
    margin-right: 48px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-48 {
    padding-top: 48px;
}

.pb-48 {
    padding-bottom: 48px;
}

.pl-48 {
    padding-left: 48px;
}

.pr-48 {
    padding-right: 48px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-49 {
    margin-top: 49px;
}

.mb-49 {
    margin-bottom: 49px;
}

.ml-49 {
    margin-left: 49px;
}

.mr-49 {
    margin-right: 49px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-49 {
    padding-top: 49px;
}

.pb-49 {
    padding-bottom: 49px;
}

.pl-49 {
    padding-left: 49px;
}

.pr-49 {
    padding-right: 49px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-50 {
    margin-left: 50px;
}

.mr-50 {
    margin-right: 50px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-51 {
    margin-top: 51px;
}

.mb-51 {
    margin-bottom: 51px;
}

.ml-51 {
    margin-left: 51px;
}

.mr-51 {
    margin-right: 51px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-51 {
    padding-top: 51px;
}

.pb-51 {
    padding-bottom: 51px;
}

.pl-51 {
    padding-left: 51px;
}

.pr-51 {
    padding-right: 51px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-52 {
    margin-top: 52px;
}

.mb-52 {
    margin-bottom: 52px;
}

.ml-52 {
    margin-left: 52px;
}

.mr-52 {
    margin-right: 52px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-52 {
    padding-top: 52px;
}

.pb-52 {
    padding-bottom: 52px;
}

.pl-52 {
    padding-left: 52px;
}

.pr-52 {
    padding-right: 52px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-53 {
    margin-top: 53px;
}

.mb-53 {
    margin-bottom: 53px;
}

.ml-53 {
    margin-left: 53px;
}

.mr-53 {
    margin-right: 53px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-53 {
    padding-top: 53px;
}

.pb-53 {
    padding-bottom: 53px;
}

.pl-53 {
    padding-left: 53px;
}

.pr-53 {
    padding-right: 53px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-54 {
    margin-top: 54px;
}

.mb-54 {
    margin-bottom: 54px;
}

.ml-54 {
    margin-left: 54px;
}

.mr-54 {
    margin-right: 54px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-54 {
    padding-top: 54px;
}

.pb-54 {
    padding-bottom: 54px;
}

.pl-54 {
    padding-left: 54px;
}

.pr-54 {
    padding-right: 54px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-55 {
    margin-top: 55px;
}

.mb-55 {
    margin-bottom: 55px;
}

.ml-55 {
    margin-left: 55px;
}

.mr-55 {
    margin-right: 55px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-55 {
    padding-top: 55px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pl-55 {
    padding-left: 55px;
}

.pr-55 {
    padding-right: 55px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-56 {
    margin-top: 56px;
}

.mb-56 {
    margin-bottom: 56px;
}

.ml-56 {
    margin-left: 56px;
}

.mr-56 {
    margin-right: 56px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-56 {
    padding-top: 56px;
}

.pb-56 {
    padding-bottom: 56px;
}

.pl-56 {
    padding-left: 56px;
}

.pr-56 {
    padding-right: 56px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-57 {
    margin-top: 57px;
}

.mb-57 {
    margin-bottom: 57px;
}

.ml-57 {
    margin-left: 57px;
}

.mr-57 {
    margin-right: 57px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-57 {
    padding-top: 57px;
}

.pb-57 {
    padding-bottom: 57px;
}

.pl-57 {
    padding-left: 57px;
}

.pr-57 {
    padding-right: 57px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-58 {
    margin-top: 58px;
}

.mb-58 {
    margin-bottom: 58px;
}

.ml-58 {
    margin-left: 58px;
}

.mr-58 {
    margin-right: 58px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-58 {
    padding-top: 58px;
}

.pb-58 {
    padding-bottom: 58px;
}

.pl-58 {
    padding-left: 58px;
}

.pr-58 {
    padding-right: 58px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-59 {
    margin-top: 59px;
}

.mb-59 {
    margin-bottom: 59px;
}

.ml-59 {
    margin-left: 59px;
}

.mr-59 {
    margin-right: 59px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-59 {
    padding-top: 59px;
}

.pb-59 {
    padding-bottom: 59px;
}

.pl-59 {
    padding-left: 59px;
}

.pr-59 {
    padding-right: 59px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.ml-60 {
    margin-left: 60px;
}

.mr-60 {
    margin-right: 60px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pl-60 {
    padding-left: 60px;
}

.pr-60 {
    padding-right: 60px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-61 {
    margin-top: 61px;
}

.mb-61 {
    margin-bottom: 61px;
}

.ml-61 {
    margin-left: 61px;
}

.mr-61 {
    margin-right: 61px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-61 {
    padding-top: 61px;
}

.pb-61 {
    padding-bottom: 61px;
}

.pl-61 {
    padding-left: 61px;
}

.pr-61 {
    padding-right: 61px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-62 {
    margin-top: 62px;
}

.mb-62 {
    margin-bottom: 62px;
}

.ml-62 {
    margin-left: 62px;
}

.mr-62 {
    margin-right: 62px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-62 {
    padding-top: 62px;
}

.pb-62 {
    padding-bottom: 62px;
}

.pl-62 {
    padding-left: 62px;
}

.pr-62 {
    padding-right: 62px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-63 {
    margin-top: 63px;
}

.mb-63 {
    margin-bottom: 63px;
}

.ml-63 {
    margin-left: 63px;
}

.mr-63 {
    margin-right: 63px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-63 {
    padding-top: 63px;
}

.pb-63 {
    padding-bottom: 63px;
}

.pl-63 {
    padding-left: 63px;
}

.pr-63 {
    padding-right: 63px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-64 {
    margin-top: 64px;
}

.mb-64 {
    margin-bottom: 64px;
}

.ml-64 {
    margin-left: 64px;
}

.mr-64 {
    margin-right: 64px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-64 {
    padding-top: 64px;
}

.pb-64 {
    padding-bottom: 64px;
}

.pl-64 {
    padding-left: 64px;
}

.pr-64 {
    padding-right: 64px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-65 {
    margin-top: 65px;
}

.mb-65 {
    margin-bottom: 65px;
}

.ml-65 {
    margin-left: 65px;
}

.mr-65 {
    margin-right: 65px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-65 {
    padding-top: 65px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pl-65 {
    padding-left: 65px;
}

.pr-65 {
    padding-right: 65px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-66 {
    margin-top: 66px;
}

.mb-66 {
    margin-bottom: 66px;
}

.ml-66 {
    margin-left: 66px;
}

.mr-66 {
    margin-right: 66px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-66 {
    padding-top: 66px;
}

.pb-66 {
    padding-bottom: 66px;
}

.pl-66 {
    padding-left: 66px;
}

.pr-66 {
    padding-right: 66px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-67 {
    margin-top: 67px;
}

.mb-67 {
    margin-bottom: 67px;
}

.ml-67 {
    margin-left: 67px;
}

.mr-67 {
    margin-right: 67px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-67 {
    padding-top: 67px;
}

.pb-67 {
    padding-bottom: 67px;
}

.pl-67 {
    padding-left: 67px;
}

.pr-67 {
    padding-right: 67px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-68 {
    margin-top: 68px;
}

.mb-68 {
    margin-bottom: 68px;
}

.ml-68 {
    margin-left: 68px;
}

.mr-68 {
    margin-right: 68px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-68 {
    padding-top: 68px;
}

.pb-68 {
    padding-bottom: 68px;
}

.pl-68 {
    padding-left: 68px;
}

.pr-68 {
    padding-right: 68px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-69 {
    margin-top: 69px;
}

.mb-69 {
    margin-bottom: 69px;
}

.ml-69 {
    margin-left: 69px;
}

.mr-69 {
    margin-right: 69px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-69 {
    padding-top: 69px;
}

.pb-69 {
    padding-bottom: 69px;
}

.pl-69 {
    padding-left: 69px;
}

.pr-69 {
    padding-right: 69px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.ml-70 {
    margin-left: 70px;
}

.mr-70 {
    margin-right: 70px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pl-70 {
    padding-left: 70px;
}

.pr-70 {
    padding-right: 70px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-71 {
    margin-top: 71px;
}

.mb-71 {
    margin-bottom: 71px;
}

.ml-71 {
    margin-left: 71px;
}

.mr-71 {
    margin-right: 71px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-71 {
    padding-top: 71px;
}

.pb-71 {
    padding-bottom: 71px;
}

.pl-71 {
    padding-left: 71px;
}

.pr-71 {
    padding-right: 71px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-72 {
    margin-top: 72px;
}

.mb-72 {
    margin-bottom: 72px;
}

.ml-72 {
    margin-left: 72px;
}

.mr-72 {
    margin-right: 72px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-72 {
    padding-top: 72px;
}

.pb-72 {
    padding-bottom: 72px;
}

.pl-72 {
    padding-left: 72px;
}

.pr-72 {
    padding-right: 72px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-73 {
    margin-top: 73px;
}

.mb-73 {
    margin-bottom: 73px;
}

.ml-73 {
    margin-left: 73px;
}

.mr-73 {
    margin-right: 73px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-73 {
    padding-top: 73px;
}

.pb-73 {
    padding-bottom: 73px;
}

.pl-73 {
    padding-left: 73px;
}

.pr-73 {
    padding-right: 73px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-74 {
    margin-top: 74px;
}

.mb-74 {
    margin-bottom: 74px;
}

.ml-74 {
    margin-left: 74px;
}

.mr-74 {
    margin-right: 74px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-74 {
    padding-top: 74px;
}

.pb-74 {
    padding-bottom: 74px;
}

.pl-74 {
    padding-left: 74px;
}

.pr-74 {
    padding-right: 74px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-75 {
    margin-top: 75px;
}

.mb-75 {
    margin-bottom: 75px;
}

.ml-75 {
    margin-left: 75px;
}

.mr-75 {
    margin-right: 75px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pl-75 {
    padding-left: 75px;
}

.pr-75 {
    padding-right: 75px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-76 {
    margin-top: 76px;
}

.mb-76 {
    margin-bottom: 76px;
}

.ml-76 {
    margin-left: 76px;
}

.mr-76 {
    margin-right: 76px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-76 {
    padding-top: 76px;
}

.pb-76 {
    padding-bottom: 76px;
}

.pl-76 {
    padding-left: 76px;
}

.pr-76 {
    padding-right: 76px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-77 {
    margin-top: 77px;
}

.mb-77 {
    margin-bottom: 77px;
}

.ml-77 {
    margin-left: 77px;
}

.mr-77 {
    margin-right: 77px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-77 {
    padding-top: 77px;
}

.pb-77 {
    padding-bottom: 77px;
}

.pl-77 {
    padding-left: 77px;
}

.pr-77 {
    padding-right: 77px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-78 {
    margin-top: 78px;
}

.mb-78 {
    margin-bottom: 78px;
}

.ml-78 {
    margin-left: 78px;
}

.mr-78 {
    margin-right: 78px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-78 {
    padding-top: 78px;
}

.pb-78 {
    padding-bottom: 78px;
}

.pl-78 {
    padding-left: 78px;
}

.pr-78 {
    padding-right: 78px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-79 {
    margin-top: 79px;
}

.mb-79 {
    margin-bottom: 79px;
}

.ml-79 {
    margin-left: 79px;
}

.mr-79 {
    margin-right: 79px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-79 {
    padding-top: 79px;
}

.pb-79 {
    padding-bottom: 79px;
}

.pl-79 {
    padding-left: 79px;
}

.pr-79 {
    padding-right: 79px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.ml-80 {
    margin-left: 80px;
}

.mr-80 {
    margin-right: 80px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pl-80 {
    padding-left: 80px;
}

.pr-80 {
    padding-right: 80px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-81 {
    margin-top: 81px;
}

.mb-81 {
    margin-bottom: 81px;
}

.ml-81 {
    margin-left: 81px;
}

.mr-81 {
    margin-right: 81px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-81 {
    padding-top: 81px;
}

.pb-81 {
    padding-bottom: 81px;
}

.pl-81 {
    padding-left: 81px;
}

.pr-81 {
    padding-right: 81px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-82 {
    margin-top: 82px;
}

.mb-82 {
    margin-bottom: 82px;
}

.ml-82 {
    margin-left: 82px;
}

.mr-82 {
    margin-right: 82px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-82 {
    padding-top: 82px;
}

.pb-82 {
    padding-bottom: 82px;
}

.pl-82 {
    padding-left: 82px;
}

.pr-82 {
    padding-right: 82px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-83 {
    margin-top: 83px;
}

.mb-83 {
    margin-bottom: 83px;
}

.ml-83 {
    margin-left: 83px;
}

.mr-83 {
    margin-right: 83px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-83 {
    padding-top: 83px;
}

.pb-83 {
    padding-bottom: 83px;
}

.pl-83 {
    padding-left: 83px;
}

.pr-83 {
    padding-right: 83px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-84 {
    margin-top: 84px;
}

.mb-84 {
    margin-bottom: 84px;
}

.ml-84 {
    margin-left: 84px;
}

.mr-84 {
    margin-right: 84px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-84 {
    padding-top: 84px;
}

.pb-84 {
    padding-bottom: 84px;
}

.pl-84 {
    padding-left: 84px;
}

.pr-84 {
    padding-right: 84px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-85 {
    margin-top: 85px;
}

.mb-85 {
    margin-bottom: 85px;
}

.ml-85 {
    margin-left: 85px;
}

.mr-85 {
    margin-right: 85px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-85 {
    padding-top: 85px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pl-85 {
    padding-left: 85px;
}

.pr-85 {
    padding-right: 85px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-86 {
    margin-top: 86px;
}

.mb-86 {
    margin-bottom: 86px;
}

.ml-86 {
    margin-left: 86px;
}

.mr-86 {
    margin-right: 86px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-86 {
    padding-top: 86px;
}

.pb-86 {
    padding-bottom: 86px;
}

.pl-86 {
    padding-left: 86px;
}

.pr-86 {
    padding-right: 86px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-87 {
    margin-top: 87px;
}

.mb-87 {
    margin-bottom: 87px;
}

.ml-87 {
    margin-left: 87px;
}

.mr-87 {
    margin-right: 87px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-87 {
    padding-top: 87px;
}

.pb-87 {
    padding-bottom: 87px;
}

.pl-87 {
    padding-left: 87px;
}

.pr-87 {
    padding-right: 87px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-88 {
    margin-top: 88px;
}

.mb-88 {
    margin-bottom: 88px;
}

.ml-88 {
    margin-left: 88px;
}

.mr-88 {
    margin-right: 88px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-88 {
    padding-top: 88px;
}

.pb-88 {
    padding-bottom: 88px;
}

.pl-88 {
    padding-left: 88px;
}

.pr-88 {
    padding-right: 88px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-89 {
    margin-top: 89px;
}

.mb-89 {
    margin-bottom: 89px;
}

.ml-89 {
    margin-left: 89px;
}

.mr-89 {
    margin-right: 89px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-89 {
    padding-top: 89px;
}

.pb-89 {
    padding-bottom: 89px;
}

.pl-89 {
    padding-left: 89px;
}

.pr-89 {
    padding-right: 89px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.ml-90 {
    margin-left: 90px;
}

.mr-90 {
    margin-right: 90px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pl-90 {
    padding-left: 90px;
}

.pr-90 {
    padding-right: 90px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-91 {
    margin-top: 91px;
}

.mb-91 {
    margin-bottom: 91px;
}

.ml-91 {
    margin-left: 91px;
}

.mr-91 {
    margin-right: 91px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-91 {
    padding-top: 91px;
}

.pb-91 {
    padding-bottom: 91px;
}

.pl-91 {
    padding-left: 91px;
}

.pr-91 {
    padding-right: 91px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-92 {
    margin-top: 92px;
}

.mb-92 {
    margin-bottom: 92px;
}

.ml-92 {
    margin-left: 92px;
}

.mr-92 {
    margin-right: 92px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-92 {
    padding-top: 92px;
}

.pb-92 {
    padding-bottom: 92px;
}

.pl-92 {
    padding-left: 92px;
}

.pr-92 {
    padding-right: 92px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-93 {
    margin-top: 93px;
}

.mb-93 {
    margin-bottom: 93px;
}

.ml-93 {
    margin-left: 93px;
}

.mr-93 {
    margin-right: 93px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-93 {
    padding-top: 93px;
}

.pb-93 {
    padding-bottom: 93px;
}

.pl-93 {
    padding-left: 93px;
}

.pr-93 {
    padding-right: 93px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-94 {
    margin-top: 94px;
}

.mb-94 {
    margin-bottom: 94px;
}

.ml-94 {
    margin-left: 94px;
}

.mr-94 {
    margin-right: 94px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-94 {
    padding-top: 94px;
}

.pb-94 {
    padding-bottom: 94px;
}

.pl-94 {
    padding-left: 94px;
}

.pr-94 {
    padding-right: 94px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-95 {
    margin-top: 95px;
}

.mb-95 {
    margin-bottom: 95px;
}

.ml-95 {
    margin-left: 95px;
}

.mr-95 {
    margin-right: 95px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-95 {
    padding-top: 95px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pl-95 {
    padding-left: 95px;
}

.pr-95 {
    padding-right: 95px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-96 {
    margin-top: 96px;
}

.mb-96 {
    margin-bottom: 96px;
}

.ml-96 {
    margin-left: 96px;
}

.mr-96 {
    margin-right: 96px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-96 {
    padding-top: 96px;
}

.pb-96 {
    padding-bottom: 96px;
}

.pl-96 {
    padding-left: 96px;
}

.pr-96 {
    padding-right: 96px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-97 {
    margin-top: 97px;
}

.mb-97 {
    margin-bottom: 97px;
}

.ml-97 {
    margin-left: 97px;
}

.mr-97 {
    margin-right: 97px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-97 {
    padding-top: 97px;
}

.pb-97 {
    padding-bottom: 97px;
}

.pl-97 {
    padding-left: 97px;
}

.pr-97 {
    padding-right: 97px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-98 {
    margin-top: 98px;
}

.mb-98 {
    margin-bottom: 98px;
}

.ml-98 {
    margin-left: 98px;
}

.mr-98 {
    margin-right: 98px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-98 {
    padding-top: 98px;
}

.pb-98 {
    padding-bottom: 98px;
}

.pl-98 {
    padding-left: 98px;
}

.pr-98 {
    padding-right: 98px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-99 {
    margin-top: 99px;
}

.mb-99 {
    margin-bottom: 99px;
}

.ml-99 {
    margin-left: 99px;
}

.mr-99 {
    margin-right: 99px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-99 {
    padding-top: 99px;
}

.pb-99 {
    padding-bottom: 99px;
}

.pl-99 {
    padding-left: 99px;
}

.pr-99 {
    padding-right: 99px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-100 {
    margin-left: 100px;
}

.mr-100 {
    margin-right: 100px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-101 {
    margin-top: 101px;
}

.mb-101 {
    margin-bottom: 101px;
}

.ml-101 {
    margin-left: 101px;
}

.mr-101 {
    margin-right: 101px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-101 {
    padding-top: 101px;
}

.pb-101 {
    padding-bottom: 101px;
}

.pl-101 {
    padding-left: 101px;
}

.pr-101 {
    padding-right: 101px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-102 {
    margin-top: 102px;
}

.mb-102 {
    margin-bottom: 102px;
}

.ml-102 {
    margin-left: 102px;
}

.mr-102 {
    margin-right: 102px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-102 {
    padding-top: 102px;
}

.pb-102 {
    padding-bottom: 102px;
}

.pl-102 {
    padding-left: 102px;
}

.pr-102 {
    padding-right: 102px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-103 {
    margin-top: 103px;
}

.mb-103 {
    margin-bottom: 103px;
}

.ml-103 {
    margin-left: 103px;
}

.mr-103 {
    margin-right: 103px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-103 {
    padding-top: 103px;
}

.pb-103 {
    padding-bottom: 103px;
}

.pl-103 {
    padding-left: 103px;
}

.pr-103 {
    padding-right: 103px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-104 {
    margin-top: 104px;
}

.mb-104 {
    margin-bottom: 104px;
}

.ml-104 {
    margin-left: 104px;
}

.mr-104 {
    margin-right: 104px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-104 {
    padding-top: 104px;
}

.pb-104 {
    padding-bottom: 104px;
}

.pl-104 {
    padding-left: 104px;
}

.pr-104 {
    padding-right: 104px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-105 {
    margin-top: 105px;
}

.mb-105 {
    margin-bottom: 105px;
}

.ml-105 {
    margin-left: 105px;
}

.mr-105 {
    margin-right: 105px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-105 {
    padding-top: 105px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pl-105 {
    padding-left: 105px;
}

.pr-105 {
    padding-right: 105px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-106 {
    margin-top: 106px;
}

.mb-106 {
    margin-bottom: 106px;
}

.ml-106 {
    margin-left: 106px;
}

.mr-106 {
    margin-right: 106px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-106 {
    padding-top: 106px;
}

.pb-106 {
    padding-bottom: 106px;
}

.pl-106 {
    padding-left: 106px;
}

.pr-106 {
    padding-right: 106px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-107 {
    margin-top: 107px;
}

.mb-107 {
    margin-bottom: 107px;
}

.ml-107 {
    margin-left: 107px;
}

.mr-107 {
    margin-right: 107px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-107 {
    padding-top: 107px;
}

.pb-107 {
    padding-bottom: 107px;
}

.pl-107 {
    padding-left: 107px;
}

.pr-107 {
    padding-right: 107px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-108 {
    margin-top: 108px;
}

.mb-108 {
    margin-bottom: 108px;
}

.ml-108 {
    margin-left: 108px;
}

.mr-108 {
    margin-right: 108px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-108 {
    padding-top: 108px;
}

.pb-108 {
    padding-bottom: 108px;
}

.pl-108 {
    padding-left: 108px;
}

.pr-108 {
    padding-right: 108px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-109 {
    margin-top: 109px;
}

.mb-109 {
    margin-bottom: 109px;
}

.ml-109 {
    margin-left: 109px;
}

.mr-109 {
    margin-right: 109px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-109 {
    padding-top: 109px;
}

.pb-109 {
    padding-bottom: 109px;
}

.pl-109 {
    padding-left: 109px;
}

.pr-109 {
    padding-right: 109px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-110 {
    margin-top: 110px;
}

.mb-110 {
    margin-bottom: 110px;
}

.ml-110 {
    margin-left: 110px;
}

.mr-110 {
    margin-right: 110px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pl-110 {
    padding-left: 110px;
}

.pr-110 {
    padding-right: 110px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-111 {
    margin-top: 111px;
}

.mb-111 {
    margin-bottom: 111px;
}

.ml-111 {
    margin-left: 111px;
}

.mr-111 {
    margin-right: 111px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-111 {
    padding-top: 111px;
}

.pb-111 {
    padding-bottom: 111px;
}

.pl-111 {
    padding-left: 111px;
}

.pr-111 {
    padding-right: 111px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-112 {
    margin-top: 112px;
}

.mb-112 {
    margin-bottom: 112px;
}

.ml-112 {
    margin-left: 112px;
}

.mr-112 {
    margin-right: 112px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-112 {
    padding-top: 112px;
}

.pb-112 {
    padding-bottom: 112px;
}

.pl-112 {
    padding-left: 112px;
}

.pr-112 {
    padding-right: 112px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-113 {
    margin-top: 113px;
}

.mb-113 {
    margin-bottom: 113px;
}

.ml-113 {
    margin-left: 113px;
}

.mr-113 {
    margin-right: 113px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-113 {
    padding-top: 113px;
}

.pb-113 {
    padding-bottom: 113px;
}

.pl-113 {
    padding-left: 113px;
}

.pr-113 {
    padding-right: 113px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-114 {
    margin-top: 114px;
}

.mb-114 {
    margin-bottom: 114px;
}

.ml-114 {
    margin-left: 114px;
}

.mr-114 {
    margin-right: 114px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-114 {
    padding-top: 114px;
}

.pb-114 {
    padding-bottom: 114px;
}

.pl-114 {
    padding-left: 114px;
}

.pr-114 {
    padding-right: 114px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-115 {
    margin-top: 115px;
}

.mb-115 {
    margin-bottom: 115px;
}

.ml-115 {
    margin-left: 115px;
}

.mr-115 {
    margin-right: 115px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-115 {
    padding-top: 115px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pl-115 {
    padding-left: 115px;
}

.pr-115 {
    padding-right: 115px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-116 {
    margin-top: 116px;
}

.mb-116 {
    margin-bottom: 116px;
}

.ml-116 {
    margin-left: 116px;
}

.mr-116 {
    margin-right: 116px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-116 {
    padding-top: 116px;
}

.pb-116 {
    padding-bottom: 116px;
}

.pl-116 {
    padding-left: 116px;
}

.pr-116 {
    padding-right: 116px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-117 {
    margin-top: 117px;
}

.mb-117 {
    margin-bottom: 117px;
}

.ml-117 {
    margin-left: 117px;
}

.mr-117 {
    margin-right: 117px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-117 {
    padding-top: 117px;
}

.pb-117 {
    padding-bottom: 117px;
}

.pl-117 {
    padding-left: 117px;
}

.pr-117 {
    padding-right: 117px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-118 {
    margin-top: 118px;
}

.mb-118 {
    margin-bottom: 118px;
}

.ml-118 {
    margin-left: 118px;
}

.mr-118 {
    margin-right: 118px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-118 {
    padding-top: 118px;
}

.pb-118 {
    padding-bottom: 118px;
}

.pl-118 {
    padding-left: 118px;
}

.pr-118 {
    padding-right: 118px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-119 {
    margin-top: 119px;
}

.mb-119 {
    margin-bottom: 119px;
}

.ml-119 {
    margin-left: 119px;
}

.mr-119 {
    margin-right: 119px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-119 {
    padding-top: 119px;
}

.pb-119 {
    padding-bottom: 119px;
}

.pl-119 {
    padding-left: 119px;
}

.pr-119 {
    padding-right: 119px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.ml-120 {
    margin-left: 120px;
}

.mr-120 {
    margin-right: 120px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pl-120 {
    padding-left: 120px;
}

.pr-120 {
    padding-right: 120px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-121 {
    margin-top: 121px;
}

.mb-121 {
    margin-bottom: 121px;
}

.ml-121 {
    margin-left: 121px;
}

.mr-121 {
    margin-right: 121px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-121 {
    padding-top: 121px;
}

.pb-121 {
    padding-bottom: 121px;
}

.pl-121 {
    padding-left: 121px;
}

.pr-121 {
    padding-right: 121px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-122 {
    margin-top: 122px;
}

.mb-122 {
    margin-bottom: 122px;
}

.ml-122 {
    margin-left: 122px;
}

.mr-122 {
    margin-right: 122px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-122 {
    padding-top: 122px;
}

.pb-122 {
    padding-bottom: 122px;
}

.pl-122 {
    padding-left: 122px;
}

.pr-122 {
    padding-right: 122px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-123 {
    margin-top: 123px;
}

.mb-123 {
    margin-bottom: 123px;
}

.ml-123 {
    margin-left: 123px;
}

.mr-123 {
    margin-right: 123px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-123 {
    padding-top: 123px;
}

.pb-123 {
    padding-bottom: 123px;
}

.pl-123 {
    padding-left: 123px;
}

.pr-123 {
    padding-right: 123px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-124 {
    margin-top: 124px;
}

.mb-124 {
    margin-bottom: 124px;
}

.ml-124 {
    margin-left: 124px;
}

.mr-124 {
    margin-right: 124px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-124 {
    padding-top: 124px;
}

.pb-124 {
    padding-bottom: 124px;
}

.pl-124 {
    padding-left: 124px;
}

.pr-124 {
    padding-right: 124px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-125 {
    margin-top: 125px;
}

.mb-125 {
    margin-bottom: 125px;
}

.ml-125 {
    margin-left: 125px;
}

.mr-125 {
    margin-right: 125px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-125 {
    padding-top: 125px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pl-125 {
    padding-left: 125px;
}

.pr-125 {
    padding-right: 125px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-126 {
    margin-top: 126px;
}

.mb-126 {
    margin-bottom: 126px;
}

.ml-126 {
    margin-left: 126px;
}

.mr-126 {
    margin-right: 126px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-126 {
    padding-top: 126px;
}

.pb-126 {
    padding-bottom: 126px;
}

.pl-126 {
    padding-left: 126px;
}

.pr-126 {
    padding-right: 126px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-127 {
    margin-top: 127px;
}

.mb-127 {
    margin-bottom: 127px;
}

.ml-127 {
    margin-left: 127px;
}

.mr-127 {
    margin-right: 127px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-127 {
    padding-top: 127px;
}

.pb-127 {
    padding-bottom: 127px;
}

.pl-127 {
    padding-left: 127px;
}

.pr-127 {
    padding-right: 127px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-128 {
    margin-top: 128px;
}

.mb-128 {
    margin-bottom: 128px;
}

.ml-128 {
    margin-left: 128px;
}

.mr-128 {
    margin-right: 128px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-128 {
    padding-top: 128px;
}

.pb-128 {
    padding-bottom: 128px;
}

.pl-128 {
    padding-left: 128px;
}

.pr-128 {
    padding-right: 128px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-129 {
    margin-top: 129px;
}

.mb-129 {
    margin-bottom: 129px;
}

.ml-129 {
    margin-left: 129px;
}

.mr-129 {
    margin-right: 129px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-129 {
    padding-top: 129px;
}

.pb-129 {
    padding-bottom: 129px;
}

.pl-129 {
    padding-left: 129px;
}

.pr-129 {
    padding-right: 129px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-130 {
    margin-top: 130px;
}

.mb-130 {
    margin-bottom: 130px;
}

.ml-130 {
    margin-left: 130px;
}

.mr-130 {
    margin-right: 130px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-130 {
    padding-top: 130px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pl-130 {
    padding-left: 130px;
}

.pr-130 {
    padding-right: 130px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-131 {
    margin-top: 131px;
}

.mb-131 {
    margin-bottom: 131px;
}

.ml-131 {
    margin-left: 131px;
}

.mr-131 {
    margin-right: 131px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-131 {
    padding-top: 131px;
}

.pb-131 {
    padding-bottom: 131px;
}

.pl-131 {
    padding-left: 131px;
}

.pr-131 {
    padding-right: 131px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-132 {
    margin-top: 132px;
}

.mb-132 {
    margin-bottom: 132px;
}

.ml-132 {
    margin-left: 132px;
}

.mr-132 {
    margin-right: 132px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-132 {
    padding-top: 132px;
}

.pb-132 {
    padding-bottom: 132px;
}

.pl-132 {
    padding-left: 132px;
}

.pr-132 {
    padding-right: 132px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-133 {
    margin-top: 133px;
}

.mb-133 {
    margin-bottom: 133px;
}

.ml-133 {
    margin-left: 133px;
}

.mr-133 {
    margin-right: 133px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-133 {
    padding-top: 133px;
}

.pb-133 {
    padding-bottom: 133px;
}

.pl-133 {
    padding-left: 133px;
}

.pr-133 {
    padding-right: 133px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-134 {
    margin-top: 134px;
}

.mb-134 {
    margin-bottom: 134px;
}

.ml-134 {
    margin-left: 134px;
}

.mr-134 {
    margin-right: 134px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-134 {
    padding-top: 134px;
}

.pb-134 {
    padding-bottom: 134px;
}

.pl-134 {
    padding-left: 134px;
}

.pr-134 {
    padding-right: 134px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-135 {
    margin-top: 135px;
}

.mb-135 {
    margin-bottom: 135px;
}

.ml-135 {
    margin-left: 135px;
}

.mr-135 {
    margin-right: 135px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-135 {
    padding-top: 135px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pl-135 {
    padding-left: 135px;
}

.pr-135 {
    padding-right: 135px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-136 {
    margin-top: 136px;
}

.mb-136 {
    margin-bottom: 136px;
}

.ml-136 {
    margin-left: 136px;
}

.mr-136 {
    margin-right: 136px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-136 {
    padding-top: 136px;
}

.pb-136 {
    padding-bottom: 136px;
}

.pl-136 {
    padding-left: 136px;
}

.pr-136 {
    padding-right: 136px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-137 {
    margin-top: 137px;
}

.mb-137 {
    margin-bottom: 137px;
}

.ml-137 {
    margin-left: 137px;
}

.mr-137 {
    margin-right: 137px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-137 {
    padding-top: 137px;
}

.pb-137 {
    padding-bottom: 137px;
}

.pl-137 {
    padding-left: 137px;
}

.pr-137 {
    padding-right: 137px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-138 {
    margin-top: 138px;
}

.mb-138 {
    margin-bottom: 138px;
}

.ml-138 {
    margin-left: 138px;
}

.mr-138 {
    margin-right: 138px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-138 {
    padding-top: 138px;
}

.pb-138 {
    padding-bottom: 138px;
}

.pl-138 {
    padding-left: 138px;
}

.pr-138 {
    padding-right: 138px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-139 {
    margin-top: 139px;
}

.mb-139 {
    margin-bottom: 139px;
}

.ml-139 {
    margin-left: 139px;
}

.mr-139 {
    margin-right: 139px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-139 {
    padding-top: 139px;
}

.pb-139 {
    padding-bottom: 139px;
}

.pl-139 {
    padding-left: 139px;
}

.pr-139 {
    padding-right: 139px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-140 {
    margin-top: 140px;
}

.mb-140 {
    margin-bottom: 140px;
}

.ml-140 {
    margin-left: 140px;
}

.mr-140 {
    margin-right: 140px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-140 {
    padding-top: 140px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pl-140 {
    padding-left: 140px;
}

.pr-140 {
    padding-right: 140px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-141 {
    margin-top: 141px;
}

.mb-141 {
    margin-bottom: 141px;
}

.ml-141 {
    margin-left: 141px;
}

.mr-141 {
    margin-right: 141px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-141 {
    padding-top: 141px;
}

.pb-141 {
    padding-bottom: 141px;
}

.pl-141 {
    padding-left: 141px;
}

.pr-141 {
    padding-right: 141px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-142 {
    margin-top: 142px;
}

.mb-142 {
    margin-bottom: 142px;
}

.ml-142 {
    margin-left: 142px;
}

.mr-142 {
    margin-right: 142px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-142 {
    padding-top: 142px;
}

.pb-142 {
    padding-bottom: 142px;
}

.pl-142 {
    padding-left: 142px;
}

.pr-142 {
    padding-right: 142px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-143 {
    margin-top: 143px;
}

.mb-143 {
    margin-bottom: 143px;
}

.ml-143 {
    margin-left: 143px;
}

.mr-143 {
    margin-right: 143px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-143 {
    padding-top: 143px;
}

.pb-143 {
    padding-bottom: 143px;
}

.pl-143 {
    padding-left: 143px;
}

.pr-143 {
    padding-right: 143px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-144 {
    margin-top: 144px;
}

.mb-144 {
    margin-bottom: 144px;
}

.ml-144 {
    margin-left: 144px;
}

.mr-144 {
    margin-right: 144px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-144 {
    padding-top: 144px;
}

.pb-144 {
    padding-bottom: 144px;
}

.pl-144 {
    padding-left: 144px;
}

.pr-144 {
    padding-right: 144px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-145 {
    margin-top: 145px;
}

.mb-145 {
    margin-bottom: 145px;
}

.ml-145 {
    margin-left: 145px;
}

.mr-145 {
    margin-right: 145px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-145 {
    padding-top: 145px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pl-145 {
    padding-left: 145px;
}

.pr-145 {
    padding-right: 145px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-146 {
    margin-top: 146px;
}

.mb-146 {
    margin-bottom: 146px;
}

.ml-146 {
    margin-left: 146px;
}

.mr-146 {
    margin-right: 146px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-146 {
    padding-top: 146px;
}

.pb-146 {
    padding-bottom: 146px;
}

.pl-146 {
    padding-left: 146px;
}

.pr-146 {
    padding-right: 146px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-147 {
    margin-top: 147px;
}

.mb-147 {
    margin-bottom: 147px;
}

.ml-147 {
    margin-left: 147px;
}

.mr-147 {
    margin-right: 147px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-147 {
    padding-top: 147px;
}

.pb-147 {
    padding-bottom: 147px;
}

.pl-147 {
    padding-left: 147px;
}

.pr-147 {
    padding-right: 147px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-148 {
    margin-top: 148px;
}

.mb-148 {
    margin-bottom: 148px;
}

.ml-148 {
    margin-left: 148px;
}

.mr-148 {
    margin-right: 148px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-148 {
    padding-top: 148px;
}

.pb-148 {
    padding-bottom: 148px;
}

.pl-148 {
    padding-left: 148px;
}

.pr-148 {
    padding-right: 148px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-149 {
    margin-top: 149px;
}

.mb-149 {
    margin-bottom: 149px;
}

.ml-149 {
    margin-left: 149px;
}

.mr-149 {
    margin-right: 149px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-149 {
    padding-top: 149px;
}

.pb-149 {
    padding-bottom: 149px;
}

.pl-149 {
    padding-left: 149px;
}

.pr-149 {
    padding-right: 149px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-150 {
    margin-top: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

.ml-150 {
    margin-left: 150px;
}

.mr-150 {
    margin-right: 150px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pl-150 {
    padding-left: 150px;
}

.pr-150 {
    padding-right: 150px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-151 {
    margin-top: 151px;
}

.mb-151 {
    margin-bottom: 151px;
}

.ml-151 {
    margin-left: 151px;
}

.mr-151 {
    margin-right: 151px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-151 {
    padding-top: 151px;
}

.pb-151 {
    padding-bottom: 151px;
}

.pl-151 {
    padding-left: 151px;
}

.pr-151 {
    padding-right: 151px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-152 {
    margin-top: 152px;
}

.mb-152 {
    margin-bottom: 152px;
}

.ml-152 {
    margin-left: 152px;
}

.mr-152 {
    margin-right: 152px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-152 {
    padding-top: 152px;
}

.pb-152 {
    padding-bottom: 152px;
}

.pl-152 {
    padding-left: 152px;
}

.pr-152 {
    padding-right: 152px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-153 {
    margin-top: 153px;
}

.mb-153 {
    margin-bottom: 153px;
}

.ml-153 {
    margin-left: 153px;
}

.mr-153 {
    margin-right: 153px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-153 {
    padding-top: 153px;
}

.pb-153 {
    padding-bottom: 153px;
}

.pl-153 {
    padding-left: 153px;
}

.pr-153 {
    padding-right: 153px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-154 {
    margin-top: 154px;
}

.mb-154 {
    margin-bottom: 154px;
}

.ml-154 {
    margin-left: 154px;
}

.mr-154 {
    margin-right: 154px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-154 {
    padding-top: 154px;
}

.pb-154 {
    padding-bottom: 154px;
}

.pl-154 {
    padding-left: 154px;
}

.pr-154 {
    padding-right: 154px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-155 {
    margin-top: 155px;
}

.mb-155 {
    margin-bottom: 155px;
}

.ml-155 {
    margin-left: 155px;
}

.mr-155 {
    margin-right: 155px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-155 {
    padding-top: 155px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pl-155 {
    padding-left: 155px;
}

.pr-155 {
    padding-right: 155px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-156 {
    margin-top: 156px;
}

.mb-156 {
    margin-bottom: 156px;
}

.ml-156 {
    margin-left: 156px;
}

.mr-156 {
    margin-right: 156px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-156 {
    padding-top: 156px;
}

.pb-156 {
    padding-bottom: 156px;
}

.pl-156 {
    padding-left: 156px;
}

.pr-156 {
    padding-right: 156px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-157 {
    margin-top: 157px;
}

.mb-157 {
    margin-bottom: 157px;
}

.ml-157 {
    margin-left: 157px;
}

.mr-157 {
    margin-right: 157px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-157 {
    padding-top: 157px;
}

.pb-157 {
    padding-bottom: 157px;
}

.pl-157 {
    padding-left: 157px;
}

.pr-157 {
    padding-right: 157px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-158 {
    margin-top: 158px;
}

.mb-158 {
    margin-bottom: 158px;
}

.ml-158 {
    margin-left: 158px;
}

.mr-158 {
    margin-right: 158px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-158 {
    padding-top: 158px;
}

.pb-158 {
    padding-bottom: 158px;
}

.pl-158 {
    padding-left: 158px;
}

.pr-158 {
    padding-right: 158px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-159 {
    margin-top: 159px;
}

.mb-159 {
    margin-bottom: 159px;
}

.ml-159 {
    margin-left: 159px;
}

.mr-159 {
    margin-right: 159px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-159 {
    padding-top: 159px;
}

.pb-159 {
    padding-bottom: 159px;
}

.pl-159 {
    padding-left: 159px;
}

.pr-159 {
    padding-right: 159px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-160 {
    margin-top: 160px;
}

.mb-160 {
    margin-bottom: 160px;
}

.ml-160 {
    margin-left: 160px;
}

.mr-160 {
    margin-right: 160px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-160 {
    padding-top: 160px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pl-160 {
    padding-left: 160px;
}

.pr-160 {
    padding-right: 160px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-161 {
    margin-top: 161px;
}

.mb-161 {
    margin-bottom: 161px;
}

.ml-161 {
    margin-left: 161px;
}

.mr-161 {
    margin-right: 161px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-161 {
    padding-top: 161px;
}

.pb-161 {
    padding-bottom: 161px;
}

.pl-161 {
    padding-left: 161px;
}

.pr-161 {
    padding-right: 161px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-162 {
    margin-top: 162px;
}

.mb-162 {
    margin-bottom: 162px;
}

.ml-162 {
    margin-left: 162px;
}

.mr-162 {
    margin-right: 162px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-162 {
    padding-top: 162px;
}

.pb-162 {
    padding-bottom: 162px;
}

.pl-162 {
    padding-left: 162px;
}

.pr-162 {
    padding-right: 162px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-163 {
    margin-top: 163px;
}

.mb-163 {
    margin-bottom: 163px;
}

.ml-163 {
    margin-left: 163px;
}

.mr-163 {
    margin-right: 163px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-163 {
    padding-top: 163px;
}

.pb-163 {
    padding-bottom: 163px;
}

.pl-163 {
    padding-left: 163px;
}

.pr-163 {
    padding-right: 163px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-164 {
    margin-top: 164px;
}

.mb-164 {
    margin-bottom: 164px;
}

.ml-164 {
    margin-left: 164px;
}

.mr-164 {
    margin-right: 164px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-164 {
    padding-top: 164px;
}

.pb-164 {
    padding-bottom: 164px;
}

.pl-164 {
    padding-left: 164px;
}

.pr-164 {
    padding-right: 164px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-165 {
    margin-top: 165px;
}

.mb-165 {
    margin-bottom: 165px;
}

.ml-165 {
    margin-left: 165px;
}

.mr-165 {
    margin-right: 165px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-165 {
    padding-top: 165px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pl-165 {
    padding-left: 165px;
}

.pr-165 {
    padding-right: 165px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-166 {
    margin-top: 166px;
}

.mb-166 {
    margin-bottom: 166px;
}

.ml-166 {
    margin-left: 166px;
}

.mr-166 {
    margin-right: 166px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-166 {
    padding-top: 166px;
}

.pb-166 {
    padding-bottom: 166px;
}

.pl-166 {
    padding-left: 166px;
}

.pr-166 {
    padding-right: 166px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-167 {
    margin-top: 167px;
}

.mb-167 {
    margin-bottom: 167px;
}

.ml-167 {
    margin-left: 167px;
}

.mr-167 {
    margin-right: 167px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-167 {
    padding-top: 167px;
}

.pb-167 {
    padding-bottom: 167px;
}

.pl-167 {
    padding-left: 167px;
}

.pr-167 {
    padding-right: 167px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-168 {
    margin-top: 168px;
}

.mb-168 {
    margin-bottom: 168px;
}

.ml-168 {
    margin-left: 168px;
}

.mr-168 {
    margin-right: 168px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-168 {
    padding-top: 168px;
}

.pb-168 {
    padding-bottom: 168px;
}

.pl-168 {
    padding-left: 168px;
}

.pr-168 {
    padding-right: 168px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-169 {
    margin-top: 169px;
}

.mb-169 {
    margin-bottom: 169px;
}

.ml-169 {
    margin-left: 169px;
}

.mr-169 {
    margin-right: 169px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-169 {
    padding-top: 169px;
}

.pb-169 {
    padding-bottom: 169px;
}

.pl-169 {
    padding-left: 169px;
}

.pr-169 {
    padding-right: 169px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-170 {
    margin-top: 170px;
}

.mb-170 {
    margin-bottom: 170px;
}

.ml-170 {
    margin-left: 170px;
}

.mr-170 {
    margin-right: 170px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-170 {
    padding-top: 170px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pl-170 {
    padding-left: 170px;
}

.pr-170 {
    padding-right: 170px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-171 {
    margin-top: 171px;
}

.mb-171 {
    margin-bottom: 171px;
}

.ml-171 {
    margin-left: 171px;
}

.mr-171 {
    margin-right: 171px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-171 {
    padding-top: 171px;
}

.pb-171 {
    padding-bottom: 171px;
}

.pl-171 {
    padding-left: 171px;
}

.pr-171 {
    padding-right: 171px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-172 {
    margin-top: 172px;
}

.mb-172 {
    margin-bottom: 172px;
}

.ml-172 {
    margin-left: 172px;
}

.mr-172 {
    margin-right: 172px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-172 {
    padding-top: 172px;
}

.pb-172 {
    padding-bottom: 172px;
}

.pl-172 {
    padding-left: 172px;
}

.pr-172 {
    padding-right: 172px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-173 {
    margin-top: 173px;
}

.mb-173 {
    margin-bottom: 173px;
}

.ml-173 {
    margin-left: 173px;
}

.mr-173 {
    margin-right: 173px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-173 {
    padding-top: 173px;
}

.pb-173 {
    padding-bottom: 173px;
}

.pl-173 {
    padding-left: 173px;
}

.pr-173 {
    padding-right: 173px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-174 {
    margin-top: 174px;
}

.mb-174 {
    margin-bottom: 174px;
}

.ml-174 {
    margin-left: 174px;
}

.mr-174 {
    margin-right: 174px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-174 {
    padding-top: 174px;
}

.pb-174 {
    padding-bottom: 174px;
}

.pl-174 {
    padding-left: 174px;
}

.pr-174 {
    padding-right: 174px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-175 {
    margin-top: 175px;
}

.mb-175 {
    margin-bottom: 175px;
}

.ml-175 {
    margin-left: 175px;
}

.mr-175 {
    margin-right: 175px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-175 {
    padding-top: 175px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pl-175 {
    padding-left: 175px;
}

.pr-175 {
    padding-right: 175px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-176 {
    margin-top: 176px;
}

.mb-176 {
    margin-bottom: 176px;
}

.ml-176 {
    margin-left: 176px;
}

.mr-176 {
    margin-right: 176px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-176 {
    padding-top: 176px;
}

.pb-176 {
    padding-bottom: 176px;
}

.pl-176 {
    padding-left: 176px;
}

.pr-176 {
    padding-right: 176px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-177 {
    margin-top: 177px;
}

.mb-177 {
    margin-bottom: 177px;
}

.ml-177 {
    margin-left: 177px;
}

.mr-177 {
    margin-right: 177px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-177 {
    padding-top: 177px;
}

.pb-177 {
    padding-bottom: 177px;
}

.pl-177 {
    padding-left: 177px;
}

.pr-177 {
    padding-right: 177px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-178 {
    margin-top: 178px;
}

.mb-178 {
    margin-bottom: 178px;
}

.ml-178 {
    margin-left: 178px;
}

.mr-178 {
    margin-right: 178px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-178 {
    padding-top: 178px;
}

.pb-178 {
    padding-bottom: 178px;
}

.pl-178 {
    padding-left: 178px;
}

.pr-178 {
    padding-right: 178px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-179 {
    margin-top: 179px;
}

.mb-179 {
    margin-bottom: 179px;
}

.ml-179 {
    margin-left: 179px;
}

.mr-179 {
    margin-right: 179px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-179 {
    padding-top: 179px;
}

.pb-179 {
    padding-bottom: 179px;
}

.pl-179 {
    padding-left: 179px;
}

.pr-179 {
    padding-right: 179px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-180 {
    margin-top: 180px;
}

.mb-180 {
    margin-bottom: 180px;
}

.ml-180 {
    margin-left: 180px;
}

.mr-180 {
    margin-right: 180px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-180 {
    padding-top: 180px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pl-180 {
    padding-left: 180px;
}

.pr-180 {
    padding-right: 180px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-181 {
    margin-top: 181px;
}

.mb-181 {
    margin-bottom: 181px;
}

.ml-181 {
    margin-left: 181px;
}

.mr-181 {
    margin-right: 181px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-181 {
    padding-top: 181px;
}

.pb-181 {
    padding-bottom: 181px;
}

.pl-181 {
    padding-left: 181px;
}

.pr-181 {
    padding-right: 181px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-182 {
    margin-top: 182px;
}

.mb-182 {
    margin-bottom: 182px;
}

.ml-182 {
    margin-left: 182px;
}

.mr-182 {
    margin-right: 182px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-182 {
    padding-top: 182px;
}

.pb-182 {
    padding-bottom: 182px;
}

.pl-182 {
    padding-left: 182px;
}

.pr-182 {
    padding-right: 182px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-183 {
    margin-top: 183px;
}

.mb-183 {
    margin-bottom: 183px;
}

.ml-183 {
    margin-left: 183px;
}

.mr-183 {
    margin-right: 183px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-183 {
    padding-top: 183px;
}

.pb-183 {
    padding-bottom: 183px;
}

.pl-183 {
    padding-left: 183px;
}

.pr-183 {
    padding-right: 183px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-184 {
    margin-top: 184px;
}

.mb-184 {
    margin-bottom: 184px;
}

.ml-184 {
    margin-left: 184px;
}

.mr-184 {
    margin-right: 184px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-184 {
    padding-top: 184px;
}

.pb-184 {
    padding-bottom: 184px;
}

.pl-184 {
    padding-left: 184px;
}

.pr-184 {
    padding-right: 184px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-185 {
    margin-top: 185px;
}

.mb-185 {
    margin-bottom: 185px;
}

.ml-185 {
    margin-left: 185px;
}

.mr-185 {
    margin-right: 185px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-185 {
    padding-top: 185px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pl-185 {
    padding-left: 185px;
}

.pr-185 {
    padding-right: 185px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-186 {
    margin-top: 186px;
}

.mb-186 {
    margin-bottom: 186px;
}

.ml-186 {
    margin-left: 186px;
}

.mr-186 {
    margin-right: 186px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-186 {
    padding-top: 186px;
}

.pb-186 {
    padding-bottom: 186px;
}

.pl-186 {
    padding-left: 186px;
}

.pr-186 {
    padding-right: 186px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-187 {
    margin-top: 187px;
}

.mb-187 {
    margin-bottom: 187px;
}

.ml-187 {
    margin-left: 187px;
}

.mr-187 {
    margin-right: 187px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-187 {
    padding-top: 187px;
}

.pb-187 {
    padding-bottom: 187px;
}

.pl-187 {
    padding-left: 187px;
}

.pr-187 {
    padding-right: 187px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-188 {
    margin-top: 188px;
}

.mb-188 {
    margin-bottom: 188px;
}

.ml-188 {
    margin-left: 188px;
}

.mr-188 {
    margin-right: 188px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-188 {
    padding-top: 188px;
}

.pb-188 {
    padding-bottom: 188px;
}

.pl-188 {
    padding-left: 188px;
}

.pr-188 {
    padding-right: 188px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-189 {
    margin-top: 189px;
}

.mb-189 {
    margin-bottom: 189px;
}

.ml-189 {
    margin-left: 189px;
}

.mr-189 {
    margin-right: 189px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-189 {
    padding-top: 189px;
}

.pb-189 {
    padding-bottom: 189px;
}

.pl-189 {
    padding-left: 189px;
}

.pr-189 {
    padding-right: 189px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-190 {
    margin-top: 190px;
}

.mb-190 {
    margin-bottom: 190px;
}

.ml-190 {
    margin-left: 190px;
}

.mr-190 {
    margin-right: 190px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-190 {
    padding-top: 190px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pl-190 {
    padding-left: 190px;
}

.pr-190 {
    padding-right: 190px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-191 {
    margin-top: 191px;
}

.mb-191 {
    margin-bottom: 191px;
}

.ml-191 {
    margin-left: 191px;
}

.mr-191 {
    margin-right: 191px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-191 {
    padding-top: 191px;
}

.pb-191 {
    padding-bottom: 191px;
}

.pl-191 {
    padding-left: 191px;
}

.pr-191 {
    padding-right: 191px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-192 {
    margin-top: 192px;
}

.mb-192 {
    margin-bottom: 192px;
}

.ml-192 {
    margin-left: 192px;
}

.mr-192 {
    margin-right: 192px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-192 {
    padding-top: 192px;
}

.pb-192 {
    padding-bottom: 192px;
}

.pl-192 {
    padding-left: 192px;
}

.pr-192 {
    padding-right: 192px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-193 {
    margin-top: 193px;
}

.mb-193 {
    margin-bottom: 193px;
}

.ml-193 {
    margin-left: 193px;
}

.mr-193 {
    margin-right: 193px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-193 {
    padding-top: 193px;
}

.pb-193 {
    padding-bottom: 193px;
}

.pl-193 {
    padding-left: 193px;
}

.pr-193 {
    padding-right: 193px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-194 {
    margin-top: 194px;
}

.mb-194 {
    margin-bottom: 194px;
}

.ml-194 {
    margin-left: 194px;
}

.mr-194 {
    margin-right: 194px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-194 {
    padding-top: 194px;
}

.pb-194 {
    padding-bottom: 194px;
}

.pl-194 {
    padding-left: 194px;
}

.pr-194 {
    padding-right: 194px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-195 {
    margin-top: 195px;
}

.mb-195 {
    margin-bottom: 195px;
}

.ml-195 {
    margin-left: 195px;
}

.mr-195 {
    margin-right: 195px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-195 {
    padding-top: 195px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pl-195 {
    padding-left: 195px;
}

.pr-195 {
    padding-right: 195px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-196 {
    margin-top: 196px;
}

.mb-196 {
    margin-bottom: 196px;
}

.ml-196 {
    margin-left: 196px;
}

.mr-196 {
    margin-right: 196px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-196 {
    padding-top: 196px;
}

.pb-196 {
    padding-bottom: 196px;
}

.pl-196 {
    padding-left: 196px;
}

.pr-196 {
    padding-right: 196px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-197 {
    margin-top: 197px;
}

.mb-197 {
    margin-bottom: 197px;
}

.ml-197 {
    margin-left: 197px;
}

.mr-197 {
    margin-right: 197px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-197 {
    padding-top: 197px;
}

.pb-197 {
    padding-bottom: 197px;
}

.pl-197 {
    padding-left: 197px;
}

.pr-197 {
    padding-right: 197px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-198 {
    margin-top: 198px;
}

.mb-198 {
    margin-bottom: 198px;
}

.ml-198 {
    margin-left: 198px;
}

.mr-198 {
    margin-right: 198px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-198 {
    padding-top: 198px;
}

.pb-198 {
    padding-bottom: 198px;
}

.pl-198 {
    padding-left: 198px;
}

.pr-198 {
    padding-right: 198px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-199 {
    margin-top: 199px;
}

.mb-199 {
    margin-bottom: 199px;
}

.ml-199 {
    margin-left: 199px;
}

.mr-199 {
    margin-right: 199px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-199 {
    padding-top: 199px;
}

.pb-199 {
    padding-bottom: 199px;
}

.pl-199 {
    padding-left: 199px;
}

.pr-199 {
    padding-right: 199px;
}

/*-- Margin To-Bottom-Left-Right --*/
.mt-200 {
    margin-top: 200px;
}

.mb-200 {
    margin-bottom: 200px;
}

.ml-200 {
    margin-left: 200px;
}

.mr-200 {
    margin-right: 200px;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pl-200 {
    padding-left: 200px;
}

.pr-200 {
    padding-right: 200px;
}

/*-- Margin Padding  0 --*/
/*-- Margin To-Bottom-Left-Right --*/
.mt-0 {
    margin-top: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

/*-- Padding To-Bottom-Left-Right --*/
.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.g-24 {
    --bs-gutter-y: 24px;
}

.g-8 {
    --bs-gutter-y: 8px;
}

.g-9 {
    --bs-gutter-y: 9px;
}

.g-10 {
    --bs-gutter-y: 10px;
}

.g-11 {
    --bs-gutter-y: 11px;
}

.g-12 {
    --bs-gutter-y: 12px;
}

.g-13 {
    --bs-gutter-y: 13px;
}

.g-14 {
    --bs-gutter-y: 14px;
}

.g-15 {
    --bs-gutter-y: 15px;
}

.g-16 {
    --bs-gutter-y: 16px;
}

.g-17 {
    --bs-gutter-y: 18px;
}

.g-64 {
    --bs-gutter-y: 64px;
}

* {
    scrollbar-color: inherit inherit;
    scrollbar-width: 0;
    scrollbar-width: none;
}

/* Hide scrollbars */
body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer/Edge */
}

body::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ot-primary-paragraph);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--poppins);
}

p {
    color: var(--ot-primary-paragraph);
    font-family: var(--poppins);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    line-height: 1.6;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 14px;
}

svg {
    vertical-align: baseline;
}

.alert svg {
    width: 20px;
    height: 20px;
}

code {
    display: inline-block;
    color: var(--ot-primary);
    text-transform: none;
    background: rgba(var(--primary-rgb), 0.08);
    padding: 4px 6px;
    font-size: 14px;
    border-radius: 4px;
    margin: 0 7px 9px;
    font-weight: 200;
    -webkit-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

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

.custom-dropdown button {
    background: none;
    padding: 0;
    border: 0;
    font-size: 40px;
    color: var(--border-color-one);
    line-height: 1;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--ot-primary);
    background-color: inherit;
}

.label-title {
    color: var(--ot-primary-title);
    text-transform: capitalize;
    margin-bottom: 11px;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.paragraph-color-one {
    color: var(--ot-primary-paragraph);
}

.paragraph-color-two {
    color: var(--paragraph-color-two);
}

.hide {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--poppins);
    color: var(--ot-primary-title);
    margin-bottom: 0px;
    font-weight: 500;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

a,
.button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a {
    color: var(--ot-primary);
    text-decoration: none;
}

a:focus,
a:active,
a:hover {
    color: var(--ot-primary);
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.opacity-0 {
    opacity: 0;
}

.shadow-0 {
    -webkit-box-shadow: none;
    box-shadow: none;
}

pre {
    margin-top: 15px;
    background-color: whitesmoke;
    background-size: 100%;
    background-image: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(50%, #f5f5f5),
            color-stop(50%, #e6e6e6));
    background-image: linear-gradient(#f5f5f5 50%, #e6e6e6 50%);
    background-size: 38px 38px;
    border: 1px solid #d4d4d4;
    display: block;
    line-height: 19px;
    margin-bottom: 20px;
    overflow: visible;
    overflow-y: hidden;
    padding: 0 0 0 4px;
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

.daterangepicker select.monthselect {
    border: 1px solid transparent;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--ot-primary);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

.daterangepicker {
    background-color: var(--white);
    border: 1px solid transparent;
}

.daterangepicker select.yearselect {
    border: 1px solid transparent;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--ot-primary);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

ol:not([class]) {
    margin-bottom: 20px;
}

ol:not([class]) ol {
    margin-bottom: 0px;
}

ul ol:not([class]) {
    margin-bottom: 0px;
}

dl,
ol,
ul {
    padding-left: 0px;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-top: 0px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

textarea:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#content[tabindex="-1"]:focus {
    outline: 0;
}

.h-100 {
    height: 100%;
}

embed,
iframe,
object {
    max-width: 100%;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}

.background-img {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*-----------   Back To Top  --------*/
@-webkit-keyframes border-transform {

    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

.paginacontainer {
    height: 3000px;
}

.progressParent {
    position: fixed;
    right: 30px;
    bottom: 70px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px #d0d0d4;
    box-shadow: inset 0 0 0 2px #d0d0d4;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progressParent.rn-backto-top-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.progressParent::after {
    position: absolute;
    font-family: "remixicon" !important;
    content: "\ea76";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: var(--ot-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-weight: 900;
}

.progressParent:hover::before {
    opacity: 1;
}

.progressParent svg path {
    fill: none;
}

.progressParent svg.backCircle path {
    stroke: var(--ot-primary);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*--- SHANE Mouse Cursor   ----*/
.mouseCursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursorInner {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--ot-primary-border);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursorInner.cursor-hover {
    margin-left: -30px;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    background-color: var(--ot-primary-border);
    opacity: 0.1;
}

.cursorOuter {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--ot-primary-border);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursorOuter.cursor-hover {
    opacity: 0;
}

.main-wrapper[data-magic-cursor="hide"] .mouseCursor {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1111;
}

.inner-section-padding2 {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .inner-section-padding2 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .inner-section-padding2 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .inner-section-padding2 {
        padding-top: 115px;
        padding-bottom: 80px;
    }
}

/*-- Section Padding -- */
.section-padding {
    padding-top: 90px;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .section-padding {
        padding-top: 66px;
        padding-bottom: 70px;
    }
}

.section-padding2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .section-padding2 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.top-padding {
    padding-top: 100px;
}

@media (max-width: 991px) {
    .top-padding {
        padding-top: 70px;
    }
}

.top-padding2 {
    padding-top: 95px;
}

@media (max-width: 991px) {
    .top-padding2 {
        padding-top: 70px;
    }
}

.bottom-padding {
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .bottom-padding {
        padding-bottom: 70px;
    }
}

.bottom-padding2 {
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .bottom-padding2 {
        padding-bottom: 70px;
    }
}

.section-padding3 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 575px) {
    .section-padding3 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.top-padding3 {
    padding-top: 40px;
}

@media (max-width: 575px) {
    .top-padding3 {
        padding-top: 30px;
    }
}

.bottom-padding3 {
    padding-bottom: 40px;
}

@media (max-width: 575px) {
    .bottom-padding3 {
        padding-top: 30px;
    }
}

.bottom-padding-60 {
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bottom-padding-60 {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .bottom-padding-60 {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .bottom-padding-60 {
        padding-bottom: 30px;
    }
}

.section-tittle .title {
    color: var(--ot-primary-title);
    font-family: var(--poppins);
    font-size: 18px;
    line-height: 1.4;
    z-index: 0;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .section-tittle .title {
        font-size: 16px !important;
    }
}

.section-tittle .title.tittleBg {
    position: relative;
}

.section-tittle .title.tittleBg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--ot-primary);
    bottom: 10px;
    z-index: -1;
    border-radius: 16px;
}

.section-tittle .title.title-border {
    position: relative;
}

.section-tittle .title.title-border::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 3px;
    background: #a8a8a8;
    left: 0;
    bottom: 0px;
    z-index: 2;
}

.section-tittle .title .title-border2 {
    position: relative;
}

.section-tittle .title .title-border2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #ccd1e5;
    left: 0;
    bottom: -8px;
    z-index: 2;
}

.section-tittle .title .textColor {
    color: var(--ot-primary);
}

.section-tittle .title .lineBrack {
    display: block;
}

@media (max-width: 575px) {
    .section-tittle .title .lineBrack {
        display: none;
    }
}

.section-tittle .title .color {
    color: var(--ot-primary);
}

.section-tittle .pera {
    color: var(--ot-primary-paragraph);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0px;
}

.section-tittle .pera a {
    text-decoration: underline;
}

.section-tittle .small-title {
    color: var(--ot-primary-paragraph);
    font-family: var(--poppins);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    z-index: 0;
}

@media (max-width: 575px) {
    .section-tittle .small-title {
        font-size: 20px !important;
    }
}

.section-tittle-two .title {
    color: var(--ot-tertiary-title);
    font-family: var(--poppins);
    font-size: 24px;
    line-height: 1.4;
    z-index: 0;
    text-transform: capitalize;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-tittle-two .title {
        font-size: 20px !important;
    }
}

@media (max-width: 575px) {
    .section-tittle-two .title {
        font-size: 20px !important;
    }
}

.section-tittle-two .title.tittleBg {
    position: relative;
}

.section-tittle-two .title.tittleBg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--ot-primary);
    bottom: 10px;
    z-index: -1;
    border-radius: 16px;
}

.section-tittle-two .title.title-border {
    position: relative;
}

.section-tittle-two .title.title-border::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 3px;
    background: #a8a8a8;
    left: 0;
    bottom: 0px;
    z-index: 2;
}

.section-tittle-two .title .title-border2 {
    position: relative;
}

.section-tittle-two .title .title-border2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #ccd1e5;
    left: 0;
    bottom: -8px;
    z-index: 2;
}

.section-tittle-two .title .textColor {
    color: var(--ot-primary);
}

.section-tittle-two .title .lineBrack {
    display: block;
}

@media (max-width: 575px) {
    .section-tittle-two .title .lineBrack {
        display: none;
    }
}

.section-tittle-two .title .color {
    color: var(--ot-primary);
}

.section-tittle-two .pera {
    color: var(--ot-primary-paragraph);
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 0px;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-tittle-two .pera {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .section-tittle-two .pera {
        font-size: 14px;
    }
}

.section-tittle-two .pera a {
    text-decoration: underline;
}

.section-tittle-three .title {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--ot-secondary-title);
    display: block;
    line-height: 1.3;
    margin-bottom: 10px;
    display: inline-block;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (max-width: 575px) {
    .section-tittle-pro {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-tittle-pro {
        margin-bottom: 40px;
    }
}

.section-tittle-pro .tittle {
    color: var(--ot-primary-title);
    font-size: 48px;
    display: block;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
    display: inline-block;
    position: relative;
    z-index: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-tittle-pro .tittle {
        font-size: 36px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-tittle-pro .tittle {
        font-size: 31px !important;
    }
}

@media (max-width: 575px) {
    .section-tittle-pro .tittle {
        font-size: 24px !important;
    }
}

.section-tittle-pro .tittle .textColor {
    color: var(--ot-primary);
}

.section-tittle-pro .tittle .lineBrack {
    display: block;
}

@media (max-width: 575px) {
    .section-tittle-pro .tittle .lineBrack {
        display: none;
    }
}

.section-tittle-pro .tittle .color {
    color: var(--ot-primary);
}

.section-tittle-pro .pera {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.section-tittle-pro .pera a {
    text-decoration: underline;
}

.tittleBgOne {
    position: relative;
    color: var(--white);
    z-index: 1;
}

.tittleBgOne::before {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--ot-primary);
    content: "";
    position: absolute;
    top: 3px;
    left: -4px;
    height: calc(84% + 5px);
    width: calc(96% + 20px);
    z-index: -1;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .tittleBgOne::before {
        top: 2px;
    }
}

@media (max-width: 575px) {
    .tittleBgOne::before {
        left: -5px;
        height: calc(82% + 5px);
        width: calc(88% + 20px);
    }
}

.tittleBgOne:hover {
    background-position: 0% 50%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .small-tittle {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .small-tittle {
        margin-bottom: 20px;
    }
}

.small-tittle .tittle {
    font-family: var(--poppins);
    color: var(--ot-primary-title);
    font-size: 28px;
    display: block;
    line-height: 1.4;
    margin-bottom: 0px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .small-tittle .tittle {
        font-size: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .small-tittle .tittle {
        font-size: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .small-tittle .tittle {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .small-tittle .tittle {
        font-size: 20px;
    }
}

.small-tittle .lineStyleOne {
    padding-left: 15px;
    border-left: 3px solid var(--ot-primary);
}

.small-tittle .pear {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.small-tittle .pear a {
    text-decoration: underline;
}

.small-tittle.small-tittle2 .tittle {
    color: var(--ot-primary-title);
    font-size: 20px;
    font-weight: 700;
}

.small-tittle.small-tittle2 .pera {
    color: #66816a;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .small-tittle-two {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .small-tittle-two {
        margin-bottom: 20px;
    }
}

.small-tittle-two .title {
    font-family: var(--poppins);
    color: var(--ot-primary-title);
    font-size: 18px;
    display: block;
    line-height: 1.4;
    margin-bottom: 0px;
}

@media (max-width: 575px) {
    .small-tittle-two .title {
        font-size: 16px;
    }
}

.small-tittle-two .pear {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.small-tittle-two .pear a {
    text-decoration: underline;
}

.plr-75 {
    padding-left: 70px;
    padding-right: 70px;
}

@media (max-width: 1199px) {
    .plr-75 {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.img-bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.simplePresentCart-one {
    padding: 30px 24px 2px 24px;
    border-radius: var(--radius-one);
}

.simplePresentCart-two {
    padding: 30px 30px;
    border-radius: var(--radius-one);
    -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

@media (max-width: 575px) {
    .simplePresentCart-two {
        padding: 20px 20px;
    }
}

.border-cart {
    padding: 25px 22px;
    border: 1px solid var(--border-color-one);
    border-radius: 8px;
}

@media (max-width: 575px) {
    .border-cart {
        padding: 25px 10px;
    }
}

.priceTittle {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-family: var(--poppins);
    color: var(--ot-primary-title);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .priceTittle {
        font-size: 18px;
    }
}

.simplePresentCart2 {
    padding: 30px 30px;
    border: 1px solid var(--border-color-one);
    padding-bottom: 10px;
}

.simplePresentCart3 {
    padding: 40px 40px 40px 40px;
    -webkit-box-shadow: 0 3px 10px rgba(27, 30, 120, 0.1);
    box-shadow: 0 3px 10px rgba(27, 30, 120, 0.1);
    border: 1px solid var(--border-color-one);
    border-radius: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .simplePresentCart3 {
        padding: 30px 19px 30px 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .simplePresentCart3 {
        padding: 30px 19px 30px 16px;
    }
}

/* Sticky*/
.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}

/* Sticky end */
.sectionBgHalf {
    position: relative;
}

.sectionBgHalf::before {
    position: absolute;
    content: "";
    background: var(--section-bg-one);
    width: 100%;
    height: 54%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.lineBreak {
    display: block;
}

@media (max-width: 1199px) {
    .lineBreak {
        display: inline-block;
    }
}

.positioningSection {
    position: relative;
    margin-bottom: -225px;
}

.sectionImg-bg {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.sectionImg-bg2 {
    background-size: 100% 100%;
    background-repeat: no-repeat !important;
    background-position: center center;
}

input[type="number"] {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}

.overlayOne {
    position: relative;
    z-index: 0;
}

.overlayOne::before {
    position: absolute;
    content: "";
    background-color: rgba(var(--ot-primary-title), 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-repeat: no-repeat;
}

.overlayTwo {
    position: relative;
    z-index: 0;
}

.overlayTwo::before {
    position: absolute;
    content: "";
    background-color: rgba(var(--ot-primary), 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-repeat: no-repeat;
}

.nicescroll-cursors {
    background-color: var(--ot-primary-rgb) !important;
    background-color: rgba(var(--ot-primary-rgb), 0.2) !important;
    border: 0 !important;
    width: 2px !important;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.border-top {
    border-top: 1px solid var(--ot-primary-border) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--ot-primary-border) !important;
}

.border-right {
    border-top: 1px solid var(--ot-primary-border) !important;
}

.border-left {
    border-left: 1px solid var(--ot-primary-border) !important;
}

.img-cover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.h-calc {
    height: calc(100% - 24px);
}

.h-calc {
    height: 100%;
}

.flexContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.text-primary-hover {
    color: var(--ot-primary-title);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.text-primary-hover:hover {
    color: var(--ot-primary);
}

.text-yellow {
    color: var(--ratting-color);
}

.text-gray {
    color: var(--ot-primary-paragraph);
}

.text-gray2 {
    color: var(--ot-gray-text);
}

.ot-card {
    padding: 24px 24px 24px 24px;
    border-radius: 4px;
    border: 1px solid var(--ot-primary-border);
}

@media (max-width: 575px) {
    .ot-card {
        padding: 15px;
    }
}

.ot-card2 {
    padding: 24px 24px 24px 24px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
}

@media (max-width: 575px) {
    .ot-card2 {
        padding: 15px;
    }
}

.ot-card3 {
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid var(--ot-primary-border);
}

.line-clamp-1 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.line-clamp-4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.line-clamp-5 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.line-clamp-6 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.column-count1 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}

.column-count2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.column-count3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.column-count4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}

@media (max-width: 991px) {
    .column-count-md-none {
        -webkit-column-count: unset;
        -moz-column-count: unset;
        column-count: unset;
    }
}

@media (max-width: 767px) {
    .column-count-sm-none {
        -webkit-column-count: unset;
        -moz-column-count: unset;
        column-count: unset;
    }
}

@media (min-width: 1399px) {
    .modal-dialog-1260 {
        max-width: 1260px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal-dialog-1260 {
        max-width: 700px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .modal-dialog-1260 {
        max-width: 900px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .modal-dialog-1260 {
        max-width: 1100px;
    }
}

.max_400 {
    max-width: 405px;
}

.max_540 {
    max-width: 543px;
}

.g-24 {
    --bs-gutter-y: 24px;
}

.g-8 {
    --bs-gutter-y: 8px;
}

.g-9 {
    --bs-gutter-y: 9px;
}

.g-10 {
    --bs-gutter-y: 10px;
}

.g-11 {
    --bs-gutter-y: 11px;
}

.g-12 {
    --bs-gutter-y: 12px;
}

.g-64 {
    --bs-gutter-y: 64px;
}

.porgress-td {
    min-width: 170px;
}

.progress-btn,
.progress-stop,
.progress-running,
.progress-incomplete,
.progress-complite {
    padding: 9px 11px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    text-transform: capitalize;
}

.progress-complite {
    background: rgba(var(--ot-primary-rgb), 0.1);
    color: #2b5d83;
}

.progress-incomplete {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.progress-running {
    background: rgba(220, 53, 69, 0.1);
    color: #2b5d83;
}

.progress-stop {
    background: rgba(var(--ot-tertiary-rgb), 0.1);
    color: var(--ot-tertiary);
}

/* Loder */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100001;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #000;
}

.preloader h3 {
    font-weight: 600;
    color: var(--white);
    font-size: 20px;
}

.loader_img {
    background-position: center;
    margin: -25px 0 0 -25px;
    text-align: center;
}

.text-normal {
    text-transform: none !important;
}

.bg-none {
    background: none !important;
}

.custom-break-spaces {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.apexcharts-toolbar {
    display: none !important;
}

.fileter-selct .select2-selection {
    min-height: 20px !important;
    padding: 15px 0;
}

.fileter-selct .fileter-selct .select2-container .select2-selection--single {
    height: 33px !important;
    padding: 10px 15px;
    border: 1px solid var(--ot-secondary-border) !important;
}

.fileter-selct .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    color: var(--ot-primary-title);
    padding-right: 0px;
    top: -3px !important;
    right: 6px;
}

.fileter-selct .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    top: 20px;
}

.fileter-selct .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ot-primary-title);
    font-size: 12px;
    padding-left: 14px;
    padding-right: 17px;
}

.min-w-150 {
    min-width: 150px;
}

/* Modal Close Button */
.btn-close {
    font-size: 22px;
    opacity: 1;
    padding: 0 !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--ot-primary-title);
    width: auto;
    height: auto;
    font-weight: 500;
    margin: 0 !important;
}

.btn-close i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    display: block;
}

.btn-close:hover {
    color: var(--ot-tertiary);
}

.btn-close:hover i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.modal-lg {
    max-width: 700px;
}

.modal-sm {
    max-width: 398px;
}

.note-modal-content {
    padding: 20px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.singleTab-items {
    display: none;
}

.btn-primary-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    background: var(--ot-primary-btn);
}

.btn-primary-fill:hover {
    background: none;
    border: 1px solid var(--ot-primary-btn);
    color: var(--ot-primary-btn);
}

.btn-primary-fill .icon {
    line-height: 1;
}

.btn-primary-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-primary-fill:focus {
    border-color: var(--ot-primary-btn);
    background: var(--ot-primary-btn);
    color: var(--ot-primary-border);
}

.btn-primary-fill:focus:active {
    border-color: var(--ot-primary-btn);
    background: var(--ot-primary-btn);
    color: var(--white);
}

.btn-secondary-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    background: rgba(var(--ot-primary-rgb), 0.16);
    color: var(--ot-primary);
}

.btn-secondary-fill:hover {
    background: none;
    border: 1px solid var(--ot-secondary-btn);
    color: #fff;
    background: var(--ot-primary);
}

.btn-secondary-fill .icon {
    line-height: 1;
}

.btn-secondary-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-secondary-fill:focus {
    border-color: rgba(var(--ot-primary-rgb), 0.16);
    background: rgba(var(--ot-primary-rgb), 0.16);
    border: 1px solid var(--ot-secondary-btn);
    color: #fff;
    background: var(--ot-primary);
}

.btn-secondary-fill:focus:active {
    border-color: rgba(var(--ot-primary-rgb), 0.16);
    background: rgba(var(--ot-primary-rgb), 0.16);
    color: var(--white);
}

.btn-secondary-fill:focus:active {
    border: 1px solid var(--ot-secondary-btn);
    color: #fff;
    background: var(--ot-primary);
}

.btn-tertiary-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    background: var(--ot-tertiary-btn);
}

.btn-tertiary-fill:hover {
    background: none;
    border: 1px solid var(--ot-tertiary-btn);
    color: var(--ot-tertiary-btn);
}

.btn-tertiary-fill .icon {
    line-height: 1;
}

.btn-tertiary-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-tertiary-fill:focus {
    border-color: var(--ot-tertiary-btn);
    background: var(--ot-tertiary-btn);
    color: var(--ot-primary-border);
}

.btn-tertiary-fill:focus:active {
    border-color: var(--ot-tertiary-btn);
    background: var(--ot-tertiary-btn);
    color: var(--white);
}

.btn-cancel-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    background: var(--red);
}

.btn-cancel-fill:hover {
    background: none;
    border: 1px solid var(--red);
    color: var(--red);
}

.btn-cancel-fill .icon {
    line-height: 1;
}

.btn-cancel-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-cancel-fill:focus {
    border-color: var(--red);
    background: var(--red);
    color: var(--ot-primary-border);
}

.btn-cancel-fill:focus:active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.btn-light-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    color: #2c323f;
}

.btn-light-fill:hover {
    background: none;
}

.btn-light-fill .icon {
    line-height: 1;
}

.btn-light-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-light-fill:focus {
    border-color: #e6edef;
    background: #e6edef;
    color: #2c323f;
    color: var(--ot-primary-border);
}

.btn-light-fill:focus:active {
    border-color: #e6edef;
    background: #e6edef;
    color: #2c323f;
}

.btn-dark-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.btn-dark-fill:hover {
    background: none;
}

.btn-dark-fill .icon {
    line-height: 1;
}

.btn-dark-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-dark-fill:focus {
    border-color: #2c323f;
    background: #2c323f;
    color: var(--ot-primary-border);
}

.btn-dark-fill:focus:active {
    border-color: #2c323f;
    background: #2c323f;
    color: var(--white);
}

.btn-warning-fill {
    padding: 9px 22px !important;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.btn-warning-fill:hover {
    background: none;
}

.btn-warning-fill .icon {
    line-height: 1;
}

.btn-warning-fill i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    left: 0;
    top: 1px;
    line-height: 1;
}

.btn-warning-fill:focus {
    border-color: #e2c636;
    background: #e2c636;
    color: var(--ot-primary-border);
}

.btn-warning-fill:focus:active {
    border-color: #e2c636;
    background: #e2c636;
    color: var(--white);
}

.btn-primary-outline {
    padding: 11px 22px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    color: var(--ot-primary-btn);
    border: 1px solid var(--ot-primary-btn);
}

.btn-primary-outline:hover {
    color: var(--white);
    border: 1px solid var(--ot-primary-btn);
    background: var(--ot-primary-btn);
}

.btn-primary-outline i {
    font-size: 21px;
    line-height: 1;
    position: relative;
    top: 4px;
}

.btn-primary-outline:focus {
    border-color: var(--ot-primary-btn);
    background: var(--ot-primary-btn);
    color: var(--white);
}

.btn-primary-outline:focus:active {
    border-color: var(--ot-primary-btn);
    background: var(--ot-primary-btn);
    color: var(--white);
}

.btn-secondary-outline {
    padding: 11px 22px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    color: var(--ot-secondary-btn);
    border: 1px solid var(--ot-secondary-btn);
}

.btn-secondary-outline:hover {
    color: var(--white);
    border: 1px solid var(--ot-secondary-btn);
    background: var(--ot-secondary-btn);
}

.btn-secondary-outline i {
    font-size: 21px;
    line-height: 1;
    position: relative;
    top: 4px;
}

.btn-secondary-outline:focus {
    border-color: --ot-secondary-btn;
    background: --ot-secondary-btn;
    color: var(--white);
}

.btn-secondary-outline:focus:active {
    border-color: --ot-secondary-btn;
    background: --ot-secondary-btn;
    color: var(--white);
}

.btn-tertiary-outline {
    padding: 11px 22px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    color: var(--ot-tertiary-btn);
    border: 1px solid var(--ot-tertiary-btn);
}

.btn-tertiary-outline:hover {
    color: var(--white);
    border: 1px solid var(--ot-tertiary-btn);
    background: var(--ot-secondary-btn);
}

.btn-tertiary-outline i {
    font-size: 21px;
    line-height: 1;
    position: relative;
    top: 4px;
}

.btn-tertiary-outline:focus {
    border-color: --ot-tertiary-btn;
    background: --ot-tertiary-btn;
    color: var(--white);
}

.btn-tertiary-outline:focus:active {
    border-color: --ot-tertiary-btn;
    background: --ot-tertiary-btn;
    color: var(--white);
}

.btn-light-outline {
    padding: 11px 22px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    color: #2c323f;
}

.btn-light-outline:hover {
    color: var(--white);
}

.btn-light-outline i {
    font-size: 21px;
    line-height: 1;
    position: relative;
    top: 4px;
}

.btn-light-outline:focus {
    border-color: #e6edef;
    background: #e6edef;
    color: #2c323f;
}

.btn-light-outline:focus:active {
    border-color: #e6edef;
    background: #e6edef;
    color: #2c323f;
}

.btn-dark-outline {
    padding: 11px 22px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
}

.btn-dark-outline:hover {
    color: var(--white);
}

.btn-dark-outline i {
    font-size: 21px;
    line-height: 1;
    position: relative;
    top: 4px;
}

.btn-dark-outline:focus {
    border-color: #2c323f;
    background: #2c323f;
    color: var(--white);
}

.btn-dark-outline:focus:active {
    border-color: #2c323f;
    background: #2c323f;
    color: var(--white);
}

.btn-warning-outline {
    padding: 11px 22px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
}

.btn-warning-outline:hover {
    color: var(--white);
}

.btn-warning-outline i {
    font-size: 21px;
    line-height: 1;
    position: relative;
    top: 4px;
}

.btn-warning-outline:focus {
    border-color: #e2c636;
    background: #e2c636;
    color: var(--white);
}

.btn-warning-outline:focus:active {
    border-color: #e2c636;
    background: #e2c636;
    color: var(--white);
}

.payment-btn-card {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--ot-primary-title);
}

.payment-btn-card:hover {
    border: 1px solid var(--ot-primary-title);
    color: var(--ot-primary-title);
}

.payment-btn-card i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-cash {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--ot-secondary);
}

.payment-btn-cash:hover {
    border: 1px solid var(--ot-secondary);
    color: var(--ot-secondary);
}

.payment-btn-cash i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-draft {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--ot-primary);
}

.payment-btn-draft:hover {
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
}

.payment-btn-draft i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-gift-card {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fa5f1c;
}

.payment-btn-gift-card:hover {
    border: 1px solid #fa5f1c;
    color: #fa5f1c;
}

.payment-btn-gift-card i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-cheque {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #1ea7ff;
}

.payment-btn-cheque:hover {
    border: 1px solid #1ea7ff;
    color: #1ea7ff;
}

.payment-btn-cheque i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-deposit {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #003dd9;
}

.payment-btn-deposit:hover {
    border: 1px solid #003dd9;
    color: #003dd9;
}

.payment-btn-deposit i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-points {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--ot-primary);
}

.payment-btn-points:hover {
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
}

.payment-btn-points i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-cancel {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ff6767;
}

.payment-btn-cancel:hover {
    border: 1px solid #ff6767;
    color: #ff6767;
}

.payment-btn-cancel i {
    font-size: 21px;
    line-height: 1;
}

.payment-btn-transection {
    padding: 12px 22px;
    border: 1px solid var(--ot-primary-border);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ff9900;
}

.payment-btn-transection:hover {
    border: 1px solid #ff9900;
    color: #ff9900;
}

.payment-btn-transection i {
    font-size: 21px;
    line-height: 1;
}

.cmn-btn {
    color: var(--white);
    background: var(--ot-primary);
    font-family: var(--ot-primary-title);
    padding: 24px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -moz-user-select: none;
    line-height: 0;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-transition: color 0.4s linear;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
}

.cmn-btn .icon {
    font-size: 11px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    left: 0;
}

.cmn-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: var(--ot-primary-title);
    z-index: 1;
    border-radius: 4px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-radius: 0px;
}

.cmn-btn:hover {
    color: #ffffff !important;
}

.cmn-btn:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    z-index: -1;
}

.cmn-btn:hover::after {
    background: var(--ot-primary);
}

.cmn-btn:hover .icon {
    left: 3px;
}

.cmn-btn.cmn-btns {
    background: var(--paragraph-color);
}

.cmn-btn.cmn-btns:hover {
    color: #ffffff !important;
}

.cmn-btn.cmn-btns:hover::before {
    background: var(--ot-primary);
}

.cmn-btn.cmn-btns:hover .icon {
    left: 3px;
}

.btn-primary-submit {
    font-family: var(--ot-primary-title);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 1px solid transparent;
    background: var(--ot-primary);
    color: var(--white);
    padding: 15px 48px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    text-transform: capitalize;
}

.btn-primary-submit .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 5px;
    font-size: 16px;
    line-height: 1;
    position: relative;
    bottom: -3px;
}

.btn-primary-submit:hover {
    background: none;
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
}

.btn-primary-submit:hover .icon {
    color: var(--ot-primary);
}

.btn-primary-submit:focus {
    background: var(--ot-primary);
    color: var(--white);
}

.fill-btn {
    border: 0;
    color: var(--white);
    background: var(--ot-primary);
    padding: 11px 15px !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: color 0.4s linear;
    transition: color 0.4s linear;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.fill-btn .icon {
    font-size: 11px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    left: 0;
}

.fill-btn:focus {
    color: var(--white);
}

.fill-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: var(--white);
    z-index: -1;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-radius: 0;
}

.fill-btn:hover {
    color: var(--ot-primary);
}

.fill-btn:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.fill-btn:hover .icon {
    left: 3px;
}

.fill-btn.border-btn2 {
    border: 1px solid var(--secondary) !important;
    color: var(--secondary) !important;
    padding: 11px 27px !important;
    font-weight: 500;
}

.fill-btn.border-btn2::before {
    background: var(--secondary) !important;
}

.fill-btn.border-btn2:hover {
    border: 1px solid var(--secondary) !important;
    color: #ffffff !important;
}

.fill-btn.border-btn3 {
    padding: 8px 28px !important;
    border-radius: 4px;
}

.fill-btn-white {
    border: 0;
    color: var(--ot-primary);
    background: var(--white);
    padding: 11px 15px !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: color 0.4s linear;
    transition: color 0.4s linear;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.fill-btn-white .icon {
    font-size: 11px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    left: 0;
}

.fill-btn-white::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: var(--ot-tertiary);
    z-index: -1;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-radius: 0;
}

.fill-btn-white:hover {
    color: var(--white);
}

.fill-btn-white:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.fill-btn-white:hover .icon {
    left: 3px;
}

.outline-btn-white {
    border: 1px solid var(--white);
    color: var(--white);
    background: none;
    padding: 10px 15px !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: color 0.4s linear;
    transition: color 0.4s linear;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.outline-btn-white .icon {
    font-size: 11px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    left: 0;
}

.outline-btn-white::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: var(--white);
    z-index: -1;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-radius: 0;
}

.outline-btn-white:hover {
    color: var(--ot-primary);
}

.outline-btn-white:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.outline-btn-white:hover .icon {
    left: 3px;
}

.outline-btn {
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
    text-transform: normal;
    padding: 11px 15px !important;
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    -webkit-transition: color 0.4s linear;
    transition: color 0.4s linear;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: none;
    z-index: 1;
}

.outline-btn .icon {
    font-size: 11px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    left: 0;
}

.outline-btn::before {
    border: 1px solid transparent;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: var(--ot-primary);
    z-index: -1;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-radius: 0;
}

.outline-btn:hover {
    color: var(--ot-primary-title);
}

.outline-btn:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    border: 1px solid transparent;
}

.outline-btn:hover .icon {
    left: 3px;
}

.outline-btn.border-btn2 {
    border: 1px solid var(--secondary) !important;
    color: var(--secondary) !important;
    padding: 11px 27px !important;
    font-weight: 500;
}

.outline-btn.border-btn2::before {
    background: var(--secondary) !important;
}

.outline-btn.border-btn2:hover {
    border: 1px solid var(--secondary) !important;
    color: #ffffff !important;
}

.outline-btn.border-btn3 {
    padding: 8px 28px !important;
    border-radius: 4px;
}

.more-btn {
    color: var(--ot-primary);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.more-btn::before {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--ot-primary);
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 2px;
}

.more-btn:hover {
    letter-spacing: 0.5px;
    color: var(--ot-primary);
}

.browse-btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--ot-primary);
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
    font-family: var(--poppins);
}

.browse-btn i {
    font-size: 22px;
    position: relative;
    top: 5px;
    margin-left: 6px;
}

.browse-btn:hover {
    letter-spacing: 0.3px;
}

.browse-btn2 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--ot-primary-title);
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
    text-transform: capitalize;
    font-family: var(--poppins);
}

.browse-btn2 i {
    font-size: 20px;
    position: relative;
    top: 5px;
    margin-left: 6px;
}

.browse-btn2:hover {
    letter-spacing: 0.3px;
}

.btn.focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.big-btn {
    padding: 14px 30px;
    font-weight: 600;
}

.primary-soft-btn {
    color: #7976fb;
    background-color: rgba(121, 118, 251, 0.1);
    border: 0;
}

.primary-soft-btn:hover {
    color: #7976fb;
    background-color: rgba(121, 118, 251, 0.1);
    border: 0;
}

.small-btn {
    font-size: 21px;
    width: 40px;
    height: 40px;
    line-height: 37px;
    border-radius: 4px;
    color: var(--ot-primary-paragraph);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid var(--ot-primary-border);
    cursor: pointer;
    background: none;
    text-align: center;
}

.small-btn:hover {
    background: var(--ot-primary);
    color: #fff;
    border: 1px solid transparent !important;
}

.add-btn {
    width: 47px;
    height: 30px;
    line-height: 30px;
    color: var(--ot-primary);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-left: 1px solid var(--ot-primary-border);
    cursor: pointer;
    background: none;
    position: absolute;
    right: 0;
    top: 39px;
    font-size: 25px;
    text-align: center;
}

.btn-uplode {
    padding: 4px 20px;
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    margin: 7px;
    background: rgba(var(--ot-primary-rgb), 0.16);
    color: var(--ot-primary);
}

.btn-dropdown {
    width: 30px;
    height: 30px;
    background: var(--body-bg);
    border-radius: 50px;
    color: var(--ot-primary-paragraph);
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.btn-height2 {
    padding: 8px 11px !important;
    font-size: 12px !important;
    gap: 0px;
    color: #fff;
    opacity: 1;
}

.btn-height2 i {
    font-size: 17px;
}

.login-btn {
    border: 1px solid var(--ot-primary-border);
    border-radius: 4px;
    text-align: center;
    display: inline-block;
    color: var(--ot-primary-paragraph);
    font-size: 14px;
    padding: 12px 15px;
    font-weight: 500;
}

.login-btn:hover {
    background: var(--ot-primary);
    border: 1px solid transparent;
    color: #fff;
}

.login-btn span {
    line-height: 1;
}

/*---------------------------------------------
    Cart Animated
-----------------------------------------------*/
.morphing-animated {
    -webkit-animation: morphing 10s infinite;
    animation: morphing 10s infinite;
    overflow: hidden;
}

@-webkit-keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

.slider-thumb {
    border-radius: 62% 47% 82% 35%/45% 45% 80% 66%;
    will-change: border-radius, transform, opacity;
    animation: sliderShape 5s linear infinite;
    display: block;
    -webkit-animation: sliderShape 5s linear infinite;
}

@-webkit-keyframes sliderShape {

    0%,
    100% {
        border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }

    34% {
        border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
        -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }

    50% {
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }

    67% {
        border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
        -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes sliderShape {

    0%,
    100% {
        border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }

    34% {
        border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
        -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }

    50% {
        -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }

    67% {
        border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
        -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

.wave-animated {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.wave-animated::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    z-index: 1;
    top: -250px;
    left: -100px;
    border-radius: 150px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.wave-animated::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 150px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    top: -245px;
    left: -98px;
    z-index: 2;
    -webkit-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.running {
    -webkit-animation: nudge 10s linear infinite alternate;
    animation: nudge 10s linear infinite alternate;
}

@-webkit-keyframes nudge {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-60px, 0);
        transform: translate(-60px, 0);

        @media (max-width: 575px) {
            .running {
                -webkit-transform: translate(-50px, 0) !important;
                transform: translate(-50px, 0) !important;
            }
        }
    }

    80% {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);

        @media (max-width: 575px) {
            .running {
                -webkit-transform: translate(50px, 0) !important;
                transform: translate(50px, 0) !important;
            }
        }
    }
}

@keyframes nudge {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-60px, 0);
        transform: translate(-60px, 0);

        @media (max-width: 575px) {
            .running {
                -webkit-transform: translate(-50px, 0) !important;
                transform: translate(-50px, 0) !important;
            }
        }
    }

    80% {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);

        @media (max-width: 575px) {
            .running {
                -webkit-transform: translate(50px, 0) !important;
                transform: translate(50px, 0) !important;
            }
        }
    }
}

.runningTwo {
    -webkit-animation: nudge 10s linear infinite alternate;
    animation: nudge 10s linear infinite alternate;
}

@keyframes nudge {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-20px, 0);
        transform: translate(-20px, 0);

        @media (max-width: 575px) {
            .runningTwo {
                -webkit-transform: translate(-20px, 0) !important;
                transform: translate(-20px, 0) !important;
            }
        }
    }

    80% {
        -webkit-transform: translate(20px, 0);
        transform: translate(20px, 0);

        @media (max-width: 575px) {
            .runningTwo {
                -webkit-transform: translate(20px, 0) !important;
                transform: translate(20px, 0) !important;
            }
        }
    }
}

/* bounce-animate */
.bounce-animate {
    -webkit-animation-name: float-bob;
    animation-name: float-bob;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    /* animation-timing-function: linear; */
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* heartbeat */
.heartbeat {
    -webkit-animation: heartbeat 1s infinite alternate;
    animation: heartbeat 1s infinite alternate;
}

@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.heartbeat2 {
    -webkit-animation: heartbeat 2s infinite alternate;
    animation: heartbeat 2s infinite alternate;
}

@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.heartbeat3 {
    -webkit-animation: heartbeat 2s infinite alternate;
    animation: heartbeat 2s infinite alternate;
}

@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.ZoomTwo {
    position: relative;
    -webkit-animation-name: myanimation;
    animation-name: myanimation;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes myanimation {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes myanimation {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

/* Rotate */
.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.bouncingAnimation {
    -webkit-animation: bouncebubble infinite 5s;
    animation: bouncebubble infinite 5s;
}

@-webkit-keyframes bouncebubble {
    1% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    75% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bouncebubble {
    1% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    75% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.live {
    display: inline-block;
    position: relative;
}

.live::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    background-color: var(--ot-secondary);
    width: 10px;
    height: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.live::after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(225, 36, 84, 0.3);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-animation: live 2s ease-in-out infinite;
    animation: live 2s ease-in-out infinite;
    z-index: 1;
    top: -15px;
    left: -5px;
}

@-webkit-keyframes live {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(3.5, 3.5);
        transform: scale(3.5, 3.5);
        background-color: rgba(225, 36, 84, 0.3);
    }
}

@keyframes live {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(3.5, 3.5);
        transform: scale(3.5, 3.5);
        background-color: rgba(255, 0, 0, 0);
    }
}

.loader-line {
    width: 200px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    margin: 100px auto;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: coral;
    -webkit-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    border-radius: 20px;
}

@-webkit-keyframes lineAnim {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}

.routedOne {
    -webkit-animation-name: des2;
    animation-name: des2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes des2 {
    from {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
}

@keyframes des2 {
    from {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
}

.routedTwo {
    max-width: 800px;
    -webkit-animation-name: shape;
    animation-name: shape;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes shape {
    from {
        -webkit-transform: rotateY(-20deg);
        transform: rotateY(-20deg);
    }

    to {
        -webkit-transform: rotateY(15deg) rotateX(10deg);
        transform: rotateY(15deg) rotateX(10deg);
    }
}

@keyframes shape {
    from {
        -webkit-transform: rotateY(-20deg);
        transform: rotateY(-20deg);
    }

    to {
        -webkit-transform: rotateY(15deg) rotateX(10deg);
        transform: rotateY(15deg) rotateX(10deg);
    }
}

.slideEffect,
.section-tittle .title .textColor,
.section-tittle-two .title .textColor,
.section-tittle-pro .tittle .textColor {
    background: -webkit-linear-gradient(left,
            var(--ot-primary-title),
            rgba(var(--primary-rgb), 0.4),
            var(--ot-primary-title));
    background-size: 1600px 200px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-name: animationgradienttitle;
    animation-name: animationgradienttitle;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes animationgradienttitle {
    0% {
        background-position: 0 1600px;
    }

    100% {
        background-position: 1600px 0;
    }
}

@keyframes animationgradienttitle {
    0% {
        background-position: 0 1600px;
    }

    100% {
        background-position: 1600px 0;
    }
}

.textEffect2 {
    background-size: auto 200%;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 8s linear infinite;
    animation: shine 8s linear infinite;
}

.textEffect2:nth-child(2) {
    top: 50vh;
}

@keyframes shine {
    from {
        background-position: center 0;
    }

    to {
        background-position: center 200%;
    }
}

.LR-animated {
    -webkit-animation: question 1.5s linear 1;
    animation: question 1.5s linear 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@-webkit-keyframes question {
    0% {
        -webkit-transform: scale(1), rotate(0deg);
        transform: scale(1), rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    50% {
        -webkit-transform: scale(1.1), rotate(0deg);
        transform: scale(1.1), rotate(0deg);
    }

    75% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes question {
    0% {
        -webkit-transform: scale(1), rotate(0deg);
        transform: scale(1), rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    50% {
        -webkit-transform: scale(1.1), rotate(0deg);
        transform: scale(1.1), rotate(0deg);
    }

    75% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.UD-animated {
    -webkit-animation: float 1.5s linear 1;
    animation: float 1.5s linear 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    25% {
        -webkit-transform: translate(0px, 5px);
        transform: translate(0px, 5px);
    }

    50% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    75% {
        -webkit-transform: translate(0px, 5px);
        transform: translate(0px, 5px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    25% {
        -webkit-transform: translate(0px, 5px);
        transform: translate(0px, 5px);
    }

    50% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    75% {
        -webkit-transform: translate(0px, 5px);
        transform: translate(0px, 5px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotatedHalf {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotatedHalf {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@-webkit-keyframes rotatedHalfTwo {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes rotatedHalfTwo {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@-webkit-keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}

@keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}

@-webkit-keyframes scale-right {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    50% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes scale-right {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    50% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0.7;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0.7;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

@-webkit-keyframes hvr-ripple-out {
    0% {
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 1;
    }

    100% {
        top: -6px;
        right: -6px;
        bottom: -6px;
        left: -6px;
        opacity: 0;
    }
}

@keyframes hvr-ripple-out {
    0% {
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 1;
    }

    100% {
        top: -6px;
        right: -6px;
        bottom: -6px;
        left: -6px;
        opacity: 0;
    }
}

@-webkit-keyframes hvr-ripple-out-two {
    0% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }

    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@keyframes hvr-ripple-out-two {
    0% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }

    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@-webkit-keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scale-up-two {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes scale-up-two {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@-webkit-keyframes scale-up-three {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@keyframes scale-up-three {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
        transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
        transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
        transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
        transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@-webkit-keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(165px, -179px);
        transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
        transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
    }
}

@keyframes animationFramesFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
        transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
        transform: translate(251px, -200px) rotate(180deg);
    }
}

@-webkit-keyframes animationFramesFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
    }
}

@keyframes animationFramesFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
        transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
        transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
        transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
        transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
        transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
        transform: translate(-1px, 0px) rotate(180deg);
    }
}

@-webkit-keyframes animationFramesFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 300% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes gradientBG {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 300% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes imageBgAnim {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 120% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes imageBgAnim {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 120% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes gradientBG {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 120% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.textFlip {
    position: relative;
    display: inline-block !important;
}

.textFlip .single {
    text-transform: lowercase;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    display: inline-block;
    -webkit-animation: flip 2s infinite;
    animation: flip 2s infinite;
    -webkit-animation-delay: calc(0.1s * var(--i));
    animation-delay: calc(0.1s * var(--i));
}

.textFlip .single:first-child {
    text-transform: uppercase;
}

@-webkit-keyframes flip {

    0%,
    80% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes flip {

    0%,
    80% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

.colorEffect {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(45%, var(--ot-primary)),
            color-stop(55%, var(--ot-primary-title)));
    background-image: linear-gradient(to right,
            var(--ot-primary) 45%,
            var(--ot-primary-title) 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
    cursor: pointer;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    -webkit-transition: 0.9s ease-out;
    transition: 0.9s ease-out;
}

.colorEffect:hover {
    background-position: 0% 50%;
}

.colorEffect2 {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(45%, var(--ot-primary)),
            color-stop(55%, var(--heading-color-tow)));
    background-image: linear-gradient(to right,
            var(--ot-primary) 45%,
            var(--heading-color-tow) 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
    cursor: pointer;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    -webkit-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
}

.colorEffect2:hover {
    background-position: 0% 50%;
}

.colorEffect2 {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(45%, var(--ot-primary)),
            color-stop(55%, var(--paragraph-color)));
    background-image: linear-gradient(to right,
            var(--ot-primary) 45%,
            var(--paragraph-color) 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
    cursor: pointer;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    -webkit-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
}

.colorEffect2:hover {
    background-position: 0% 50%;
}

.colorEffect3 {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(45%, var(--ot-primary)),
            color-stop(55%, #ffffff));
    background-image: linear-gradient(to right,
            var(--ot-primary) 45%,
            #ffffff 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
    cursor: pointer;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    -webkit-transition: 0.9s ease-out;
    transition: 0.9s ease-out;
}

.colorEffect3:hover {
    background-position: 0% 50%;
}

.imgEffect {
    overflow: hidden;
    position: relative;
}

.imgEffect::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(255, 255, 255, 0)),
            to(rgba(255, 255, 255, 0.2)));
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.imgEffect img {
    border-radius: 12px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
}

.imgEffect:hover::before {
    -webkit-animation: shine 0.8s;
    animation: shine 0.8s;
}

.imgEffect:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.imgEffect2 img {
    border-radius: 7px 7px 0 0;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
}

.imgEffect2:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.zoomImg {
    overflow: hidden;
}

.zoomImg img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
}

.zoomImg:hover::before {
    -webkit-animation: shine 0.8s;
    animation: shine 0.8s;
}

.zoomImg:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.tittleBgColor::before {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--ot-primary);
    content: "";
    position: absolute;
    top: 7px;
    left: -10px;
    height: calc(84% + 5px);
    width: calc(100% + 20px);
    z-index: -1;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .tittleBgColor::before {
        top: 2px;
    }
}

.tittleBgColor:hover {
    color: var(--ot-primary);
    background-position: 0% 50%;
}

.tittleBgColor:hover::before {
    background: var(--white);
}

.hvr-wobble-bottom {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.hvr-wobble-bottom:hover {
    -webkit-animation-name: hvr-wobble-bottom;
    animation-name: hvr-wobble-bottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes hvr-wobble-bottom {
    16.65% {
        -webkit-transform: skew(-8deg);
        transform: skew(-8deg);
    }

    33.3% {
        -webkit-transform: skew(8deg);
        transform: skew(8deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

.select2-selection {
    border-color: var(--ot-primary-border) !important;
    border-radius: 4px !important;
    margin-bottom: 4px;
    min-height: 40px !important;
    padding: 11px 14px 15px 14px;
}

.select2-selection .select2-container .select2-selection__choice {
    margin-top: 0 !important;
}

.select2-selection .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    margin-bottom: 0px;
}

.select2-results__option[aria-selected] {
    text-transform: capitalize;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
    font-weight: 600;
    color: var(--ot-primary-title);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-top: 0;
}

.select2-selection__rendered li {
    padding: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: var(--white);
    background-color: var(--ot-primary);
    padding: 4px 9px !important;
    font-size: 14px;
    line-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    margin-top: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--white);
    font-size: 24px;
    font-weight: 300 !important;
    line-height: 1;
    margin-right: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: var(--white);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #cfcfcf transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0;
    position: absolute;
    top: 50%;
    width: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--ot-primary);
    color: var(--ot-primary-border);
}

.nice-select {
    line-height: 30px;
    border: 1px solid var(--ot-primary-border);
    height: 50px;
    width: 100%;
    color: #071112;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 10px;
    padding-right: 39px;
    border-radius: 8px;
}

.nice-select span {
    color: var(--paragraph-color-one) !important;
}

.nice-select:focus {
    border: 1px solid var(--ot-primary-border);
}

.nice-select::after {
    border-bottom: 2px solid #a3a3a3;
    border-right: 2px solid #a3a3a3;
    height: 7px;
    right: 22px;
    width: 7px;
}

.nice-select .list {
    width: 100%;
    border-radius: 0;
}

.nice-select.open .list {
    width: 100%;
    border-radius: 0;
}

.nice-select .option {
    margin-bottom: 0;
}

.nice-select .option.selected.focus {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.nice-select .option:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.nice-select::-webkit-input-placeholder {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
}

.nice-select::-moz-placeholder {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
}

.nice-select:-ms-input-placeholder {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
}

.nice-select::-ms-input-placeholder {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
}

.nice-select::placeholder {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
}

.select2-dropdown {
    border-color: #eaecf0;
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
}

.select2-dropdown {
    z-index: 10060 !important;
    /*1051;*/
}

.select2-container .select2-results {
    padding: 8px 0;
    padding-bottom: 0;
}

.user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.user-info .user-img {
    max-width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .user-info .user-img {
        margin-right: 0px;
    }
}

.user-info .user-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .user-info .user-details {
        display: none;
    }
}

.user-info .user-details .name,
.user-info .user-details i {
    font-weight: 400;
    font-size: 14px;
    color: var(--ot-primary-paragraph);
    text-transform: capitalize;
}

.user-info .user-details i {
    font-size: 18px;
}

.user-info .user-details .pera {
    font-weight: 300;
    margin: 0;
    font-size: 12px;
}

.toggle-arro-hidden::after {
    display: none;
}

.dropdown-toggle {
    cursor: pointer;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
}

.header-right .count {
    background: #dc3545;
    color: var(--white);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: -6px;
    right: -4px;
    line-height: 15px;
    font-size: 10px;
}

.header-right .cart-list {
    line-height: 1;
}

.header-right .cart-list .cart-items {
    color: var(--ot-primary-paragraph);
    border: 1px solid transparent;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-right .cart-list .pos-btn {
    padding: 8px 15px 8px 15px;
    font-size: 14px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-right .cart-list .pos-btn span {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-right .cart-list .pos-btn {
        padding: 6px 6px;
    }

    .header-right .cart-list .pos-btn span {
        display: none;
    }
}

.header-right .cart-list .pos-btn:hover {
    color: var(--ot-primary);
    border: 1px solid var(--ot-primary);
}

.header-right .cart-list .pos-btn:hover i {
    left: 0;
}

@media (max-width: 575px) {
    .header-right .cart-list.langualge-select {
        display: none;
    }
}

.header-right .cart-list.langualge-select .select2-selection.select2-selection--single {
    height: unset;
    padding: 0;
    margin: 0;
}

.header-right .cart-list.langualge-select .ot_input,
.header-right .cart-list.langualge-select .ot-form-control,
.header-right .cart-list.langualge-select .select2-container .select2-selection--single,
.header-right .cart-list.langualge-select .ot_input:focus,
.header-right .cart-list.langualge-select .ot-form-control:focus {
    border: 0 !important;
}

.header-right .cart-list.langualge-select .select2-container .select2-selection--single {
    border: 0 !important;
    text-transform: capitalize;
    background: none !important;
}

.header-right .cart-list.langualge-select .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 14px;
    font-size: 16px;
    color: var(--ot-primary-paragraph);
    padding-left: 0;
}

.header-right .cart-list.langualge-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: 10px;
    margin-top: -17px;
    border-color: #bdbdbd transparent transparent transparent;
    top: 20px;
}

.header-transparent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

.notification .dropdown-menu {
    min-width: 300px;
}

.dropdown-list-style {
    min-width: 120px;
    top: 22px;
}

.dropdown-list-style .user-sub-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--ot-secondary-border);
    margin-bottom: 9px;
    padding-bottom: 14px;
    gap: 6px;
}

.dropdown-list-style .user-sub-info .user-img {
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

.dropdown-list-style .user-sub-info .user-details .name,
.dropdown-list-style .user-sub-info .user-info .user-details i,
.user-info .dropdown-list-style .user-sub-info .user-details i {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--ot-primary-paragraph);
}

.dropdown-list-style .user-sub-info .user-details .pera {
    font-weight: 300;
    margin: 0;
    font-size: 12px;
}

.dropdown-list-style .profileListing .list {
    color: var(--ot-primary-title);
    cursor: pointer;
}

.dropdown-list-style .profileListing .list .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--paragraph-color);
    margin-right: 8px;
    font-weight: 700;
    font-size: 20px;
    vertical-align: -4px;
}

.dropdown-list-style .profileListing .list:last-child .list-items {
    padding-bottom: 0;
}

.dropdown-list-style .profileListing .list .list-items {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--ot-tertiary-title);
    display: block;
    padding: 10px 0px;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    border-radius: 8px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.dropdown-list-style .profileListing .list .list-items i {
    font-size: 20px;
}

.dropdown-list-style .profileListing .list .list-items:hover {
    color: var(--ot-primary);
}

.dropdown-list-style .notification-listing {
    padding-top: 14px;
    padding-bottom: 10px;
    max-height: 300px;
}

.dropdown-list-style .notification-listing .list {
    color: var(--ot-primary-title);
    cursor: pointer;
}

.dropdown-list-style .notification-listing .list .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--paragraph-color);
    margin-right: 8px;
    font-weight: 700;
    font-size: 20px;
    vertical-align: -4px;
}

.dropdown-list-style .notification-listing .list .list-items {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--ot-primary-paragraph);
    display: block;
    padding: 12px 15px 11px;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    border-bottom: 1px solid var(--ot-secondary-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.dropdown-list-style .notification-listing .list .list-items i {
    position: relative;
    top: 3px;
    margin-right: 5px;
    min-width: 36px;
    min-height: 28px;
    display: inline-block;
    border-radius: 50%;
    line-height: 36px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    margin-right: 10px;
}

.dropdown-list-style .notification-listing .list .list-items:last-child {
    border-bottom: 0;
}

.custom-dropdown.profileListing .list .list-items {
    padding: 4px 0px;
    gap: 15px;
}

.custom-dropdown.profileListing .list .list-items i {
    font-size: 17px;
}

.see-all-notification {
    font-size: 14px;
    padding: 10px 10px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
    border-radius: 0;
    display: block;
    background: var(--ot-primary);
}

.see-all-notification:hover {
    color: #fff;
}

.change-mode {
    cursor: pointer;
    font-size: 19px;
    background: none;
    padding: 0;
    border: 0;
    color: var(--ot-primary-paragraph);
    font-weight: 500;
}

.default-theme .dark-logo {
    display: none;
}

.default-theme .light-logo {
    display: block;
}

.default-theme .logo-mobile.dark-logo {
    display: none !important;
}

.default-theme .logo-mobile.light-logo {
    display: block;
}

.default-theme.dark-theme .dark-logo {
    display: block;
}

.default-theme.dark-theme .light-logo {
    display: none !important;
}

.default-theme.dark-theme .logo-mobile.dark-logo {
    display: block !important;
}

.default-theme.dark-theme .logo-mobile.light-logo {
    display: block;
}

.scroll-active {
    min-height: 100px;
    overflow: auto;
}

.header {
    background: var(--white);
    height: 80px;
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    z-index: 20;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    padding: 22.5px 30px !important;
    transition: -webkit- left 0.4s;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    transition: left 0.4s, -webkit- left 0.4s;
    border-bottom: 1px solid var(--ot-primary-border);
}

.header .header-search {
    position: relative;
    width: 444px;
}

.header .header-search .search-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
}

.header .header-search .search-field {
    color: var(--ot-primary);
    background: #f6f6f6;
    display: block;
    width: 100%;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    border: 0;
    border-radius: 4px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-right: 3.25rem !important;
    height: 40px !important;
}

.header .header-search .search-field::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field::-moz-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field:focus-visible {
    outline-color: #eef0ff;
}

@media (max-width: 991.98px) {

    .md-none,
    .header-search {
        display: none !important;
    }
}

.header {
    background: var(--white);
    height: 80px;
    position: fixed;
    top: 0;
    left: 320px;
    right: 0;
    z-index: 20;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    padding: 22.5px 30px !important;
    transition: -webkit- left 0.4s;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    transition: left 0.4s, -webkit- left 0.4s;
}

@media (max-width: 991.98px) {
    .header {
        width: 100%;
        padding: 10px;
        left: 0;
        transition: -webkit-transform 0.3s;
        -webkit-transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
}

@media screen and (max-width: 768px) {
    .header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 17px 24px;
    }
}

@media screen and (min-width: 769px) {
    .header {
        display: unset;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
        padding: 15px 20px !important;
    }
}

@media (max-width: 767.98px) {
    .header {
        padding: 12px 24px;
        height: auto;
    }
}

.header-control-item .select2 {
    width: 100% !important;
}

@media (max-width: 991.98px) {

    .md-none,
    .header-search {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-control-item.md-none {
        display: unset !important;
    }
}

.header-icon {
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid grey;
    padding: 10px;
    width: 30px;
    height: 30px;
    font-size: 1.4em;
}

.half-expand .header {
    z-index: 22;
    left: 100px;
    transition: -webkit- left 0.4s;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    transition: left 0.4s, -webkit- left 0.4s;
}

.header .header-search .search-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
}

.header .close-toggle {
    display: none;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header .header-search {
    position: relative;
    width: 444px;
}

.header .header-search .search-field {
    color: var(--ot-primary);
    background: var(--body-bg);
    display: block;
    width: 100%;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    border: 0;
    border-radius: 4px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-right: 3.25rem !important;
    height: 40px !important;
}

.header .header-search .search-field::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field::-moz-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-secondary-paragraph);
}

.header .header-search .search-field:focus-visible {
    outline-color: #eef0ff;
}

.with-248 {
    min-width: 248px !important;
}

.custom-w-p {
    width: 182px;
    padding: 20px;
}

.full-logo {
    max-width: 101px;
}

.sidebar-header {
    overflow: hidden;
}

/* Footer */
#layout-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

#layout-wrapper main {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer {
    border-top: 0;
    border-bottom: 0;
    background: var(--white);
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    padding: 21px 0px;
    width: 100%;
    border-radius: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.footer p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 28px;
    color: var(--ot-primary-title);
    margin-bottom: 0;
}

.footer p a {
    margin-left: 3px;
    color: #1890ff;
}

@media (max-width: 576px) {
    .footer p {
        font-size: 11px;
    }
}

.off-sidebar .main-content {
    margin-left: 0px;
    padding-top: 105px;
}

.off-sidebar .header {
    left: 0px;
}

.half-expand .simplebar-mask {
    overflow: visible !important;
}

.half-expand .simplebar-wrapper {
    overflow: visible !important;
}

.half-expand .simplebar-content-wrapper {
    overflow: visible !important;
}

/*
    Sidebar Design  --------------------------------------------------------------------------------

*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 320px;
    transition: -webkit- width 0.3s;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.sidebar .close-toggle {
    display: none;
}

@media (max-width: 768px) {
    .sidebar .close-toggle {
        display: block;
    }

    .sidebar .half-expand-toggle {
        display: none;
    }

    .sidebar .sidebar-header .sidebar-close {
        display: block;
    }
}

.sidebar .half-expand-toggle {
    display: block;
}

.sidebar .sidebar-header .sidebar-logo .full-logo {
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: -webkit- opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    transition: opacity 0.4s, -webkit- opacity 0.4s;
}

.sidebar .sidebar-header .sidebar-logo .half-logo {
    opacity: 0;
    visibility: hidden;
    height: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.sidebar .sidebar-header .sidebar-close {
    border: 0;
    outline: 0;
    display: none;
    background: 0;
    padding: 0;
    margin-right: 10px;
    font-size: 28px;
}

.sidebar .sidebar-header .sidebar-close:hover {
    color: red;
}

.sidebar .sidebar-menu {
    overflow-x: none;
    height: calc(100vh - 90px);
    top: 0 !important;
    position: relative;
    overflow-x: none;
    border-right: 1px solid var(--ot-primary-border);
}

.sidebar .sidebar-menu i {
    font-size: 22px;
}

.sidebar .sidebar-menu ol,
.sidebar .sidebar-menu ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.sidebar .sidebar-menu ol a,
.sidebar .sidebar-menu ul a {
    text-decoration: none;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
    margin-left: 17px;
    color: var(--ot-primary);
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>a {
    padding-left: 47px;
    padding-top: 16px;
    padding-bottom: 16px;
    text-transform: capitalize;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>ul>li>a {
    padding-left: 64px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: var(--ot-secondary-title);
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    padding: 14px 0px 15px 13px;
    position: relative;
    text-transform: capitalize;
    border-radius: 7px;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(111, 118, 126, 0.6980392157);
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a.has-arrow::after {
    -webkit-transform: rotate(135deg) translate(0, -50%);
    transform: rotate(135deg) translate(0, -50%);
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a.parent-item-content::before {
    content: none;
}

li {
    list-style: none;
}

.sidebar .sidebar-menu .sidebar-menu-section .mm-active>a::before {
    background: var(--ot-primary);
}

.sidebar .sidebar-menu .sidebar-menu-section .mm-active>a.has-arrow::after {
    color: var(--ot-primary);
    -webkit-transform: rotate(225deg) translate(0, -50%);
    transform: rotate(225deg) translate(0, -50%);
}

.sidebar .sidebar-menu .sidebar-menu-section ul>li>a {
    padding-left: 28px;
}

.sidebar .sidebar-menu .sidebar-menu-section .mm-active ul {
    background: var(--white);
}

ol,
ul {
    padding-left: 2px;
}

ol,
ul {
    padding-right: 2px;
}

.sidebar-expand .sidebar {
    left: 0;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
}

.half-expand .sidebar {
    width: 106px;
}

.half-expand .sidebar .sidebar-header {
    position: relative;
}

.half-expand .sidebar .sidebar-header .sidebar-logo a .half-logo {
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: -webkit- opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    transition: opacity 0.4s, -webkit- opacity 0.4s;
}

.half-expand .sidebar .sidebar-header .sidebar-logo a .full-logo {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: -webkit- opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    transition: opacity 0.4s, -webkit- opacity 0.4s;
}

.half-expand .sidebar .sidebar-header .half-expand-toggle {
    position: absolute;
    left: 100%;
    margin-left: 10px;
}

.half-expand .sidebar .sidebar-header .half-expand-toggle img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.half-expand .sidebar .sidebar-header .sidebar-close {
    border: 0;
    outline: 0;
    display: none;
    background: 0;
    padding: 0;
    margin-right: 10px;
    font-size: 28px;
}

@media (max-width: 768px) {
    .half-expand .sidebar .sidebar-header .sidebar-close {
        display: block;
    }
}

.half-expand .sidebar .sidebar-header .sidebar-close:hover {
    color: #edfaff;
}

.half-expand .sidebar .sidebar-menu {
    overflow: visible;
    width: 100% !important;
    top: 86px !important;
}

.half-expand .sidebar .sidebar-menu .sidebar-menu-section-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
}

.half-expand .sidebar .sidebar-menu .sidebar-menu-section-heading .on-half-expanded {
    display: none;
}

.half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item {
    position: relative;
}

.half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item .parent-item-content {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item .parent-item-content::after {
    content: none;
}

.half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item .parent-item-content span {
    display: none;
}

.half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item a {
    border: none;
}

.half-expand .sidebar .sidebar-menu-item>ul>li>a {
    padding-left: 10px !important;
}

.half-expand .sidebar .sidebar-menu-item>ul>li>ul>li>a {
    padding-left: 30px !important;
}

.half-expand .sidebar-dropdown-menu li {
    position: relative;
}

.half-expand .sidebar-dropdown-menu>li ul {
    position: absolute;
    left: 101%;
    top: 0;
    min-width: 200px;
    display: none;
    background: #fcfcfc !important;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.half-expand .sidebar-dropdown-menu li:hover>ul,
.half-expand .sidebar-dropdown-menu li:hover>ul.collapse {
    display: block !important;
    height: auto !important;
    z-index: 1000;
}

.half-expand .theme-switch {
    background: var(--ot-bg-secondary);
    z-index: 3000000;
    position: absolute;
    bottom: 0;
}

.half-expand .sidebar-header {
    background: var(--ot-bg-secondary);
    z-index: 3000000;
}

.half-expand .parent-menu-list>li>ul {
    left: 104px !important;
}

.half-expand .sidebar-menu {
    position: absolute;
    left: 50%;
    top: 10%;
    z-index: 2000;
    overflow: hide;
    height: calc(100vh - 100px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.half-expand .main-content {
    margin-left: 100px;
    transition: -webkit-margin-left 0.3s;
    -webkit-transition: margin-left 0.3s;
    transition: margin-left 0.3s;
    transition: margin-left 0.3s, -webkit-margin-left 0.3s;
}

.half-expand .theme-switch .switch-field {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.half-expand .theme-switch .switch-field label {
    width: 34px;
    height: 34px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.half-expand .theme-switch .switch-field label span,
.half-expand .theme-switch .switch-field label p {
    display: none;
}

/* sidebar  */
.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    white-space: nowrap;
    background: unset;
    -webkit-background-clip: text;
    -webkit-text-fill-color: unset;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: var(--ot-primary);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>a {
    padding: 7px 0 7px 47px;
    grid-gap: 12px;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li.sidebar-menu-item.mm-active a {
    color: var(--ot-primary) !important;
    background: none !important;
}

.sidebar .sidebar-menu .child-menu-list .sidebar-menu-item a {
    font-size: 14px;
    color: var(--ot-primary-paragraph);
    font-weight: 500;
}

.sidebar .sidebar-menu .sidebar-menu-section .mm-active>a.has-arrow::after,
.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item.mm-active .parent-item-content i,
.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item.mm-active .parent-item-content .on-half-expanded {
    color: #fff;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    margin-left: 30px;
}

.child-menu-list .sidebar-menu-item:first-child {
    padding-top: 3px;
}

.child-menu-list .sidebar-menu-item:last-child {
    padding-bottom: 3px;
}

#layout-wrapper.half-expand .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sidebar .sidebar-menu .sidebar-menu-section .mm-active>a {
    color: #fff !important;
    background: var(--ot-primary);
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>a {
    padding: 7px 0 7px 47px;
}

.sidebar-menu-section {
    margin: 15px;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item:not(.child-menu-list) a.active::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    top: 0;
    border-radius: 0 30px 30px 0;
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>ul>li>a {
    padding: 7px 0px 7px 60px;
}

.half-expand .mCSB_container {
    overflow: visible;
}

.half-expand .mCustomScrollBox {
    position: relative;
    overflow: visible;
}

.half-expand .sidebar .sidebar-menu {
    height: calc(100vh - 350px);
    overflow-x: none;
    top: 86px !important;
    position: fixed;
    left: 0;
    width: 106px !important;
}

.half-expand .sidebar-menu {
    -webkit-transform: none;
    transform: none;
}

.half-expand .sidebar .sidebar-header {
    position: relative;
    z-index: 12122;
}

.half-expand .sidebar ul.parent-menu-list>li>ul {
    position: absolute;
    top: 0;
    width: 236px;
    left: 100px;
    background: var(--ot-primary-border);
    border: 0;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    border-radius: 4px;
    padding: 10px 10px !important;
}

.half-expand .sidebar-dropdown-menu>li ul {
    background: var(--ot-primary-border);
    border: 0;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    border-radius: 8px;
    padding: 10px 10px !important;
}

.half-expand .sidebar .sidebar-dropdown-menu .sidebar-menu-item li span {
    display: block !important;
}

.half-expand .sidebar .sidebar-menu-item>ul>li>ul>li>a {
    padding-left: 10px !important;
}

.half-expand .child-menu-list .sidebar-menu-item:last-child {
    padding-bottom: 0;
}

.half-expand .child-menu-list .nav-item:last-child {
    padding-bottom: 0;
}

.sidebar {
    border: 0;
    height: 100%;
    background: var(--white);
}

.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item .mm-show {
    background: var(--white);
}

.half-expand .sidebar .sidebar-header .sidebar-logo a .half-logo {
    max-width: 45px;
    max-height: 45px;
    height: 45px;
}

.half-expand .sidebar_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.half-expand .sidebar ul.parent-menu-list>li>ul {
    border-radius: 4px;
    padding: 10px;
}

.sidebar .sidebar-header {
    height: 80px;
    padding: 13px 27px !important;
    border-right: 1px solid var(--ot-primary-border);
    min-height: 80px;
    position: relative;
    z-index: 12;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--ot-primary-border);
}

@media (max-width: 991px) {
    .sidebar .sidebar-header {
        justify-content: space-between;
    }
}

.half-expand .sidebar .sidebar-header .sidebar-logo a .full-logo {
    width: 0px;
}

.close-toggle.sidebar-toggle {
    margin: 0 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header .header-search {
        width: 400px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header .header-search {
        width: 300px !important;
    }
}

.panel-pages {
    margin-bottom: 5px;
    text-align: left;
    padding-left: 17px;
}

.panel-pages .title {
    color: #b2bec3;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

.card-color-one .icon,
.profile-card .col-xxl-3:nth-child(1) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(1) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(1) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(1) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(1) .single-dashboard-card .icon {
    color: var(--ot-primary);
    background-color: rgba(83, 74, 186, 0.06);
}

.card-color-two .icon,
.profile-card .col-xxl-3:nth-child(4) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(4) .profile-single-card .icon,
.profile-card .col-xxl-3:nth-child(2) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(2) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(4) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(4) .single-card-two .icon,
.payment-card .col-xxl-3:nth-child(2) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(2) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(2) .single-dashboard-card .icon {
    color: #ef746d;
    background-color: rgba(239, 116, 109, 0.06);
}

.card-color-three .icon,
.profile-card .col-xxl-3:nth-child(3) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(3) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(3) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(3) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(3) .single-dashboard-card .icon {
    color: #2b5d83;
    background-color: rgba(12, 175, 96, 0.06);
}

.card-color-four .icon,
.profile-card .col-xxl-3:nth-child(4) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(4) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(4) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(4) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(4) .single-dashboard-card .icon {
    color: #003dd9;
    background-color: rgba(0, 61, 217, 0.06);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(5) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(5) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(5) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(5) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(5) .single-dashboard-card .icon {
    color: #633ca7;
    background-color: rgba(99, 60, 167, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(6) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(6) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(6) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(6) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(6) .single-dashboard-card .icon {
    color: #087c7c;
    background-color: rgba(8, 124, 124, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(7) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(7) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(7) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(7) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(7) .single-dashboard-card .icon {
    color: #0D8549;
    background-color: rgba(13, 133, 73, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(8) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(8) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(8) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(8) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(8) .single-dashboard-card .icon {
    color: #8E3E63;
    background-color: rgba(142, 62, 99, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(9) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(9) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(9) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(9) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(9) .single-dashboard-card .icon {
    color: #37306B;
    background-color: rgba(55, 48, 107, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(10) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(10) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(10) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(10) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(10) .single-dashboard-card .icon {
    color: #2D5C7F;
    background-color: rgba(45, 92, 127, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(11) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(11) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(11) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(11) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(11) .single-dashboard-card .icon {
    color: #D9528B;
    background-color: rgba(217, 82, 139, 0.1);
}

.card-color-five .icon,
.profile-card .col-xxl-3:nth-child(12) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(12) .profile-single-card .icon,
.payment-card .col-xxl-3:nth-child(12) .single-card-two .icon,
.payment-card .col-xl-6:nth-child(12) .single-card-two .icon,
.dashboard-card .col-xl-3:nth-child(12) .single-dashboard-card .icon {
    color: #E18237;
    background-color: rgba(225, 130, 55, 0.1);
}

.progress-up {
    color: #2b5d83 !important;
}

.progress-down {
    color: #fa5f1c !important;
}

.single-dashboard-card {
    padding: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--ot-primary-border);
}

@media (max-width: 575px) {
    .single-dashboard-card {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-dashboard-card {
        padding: 15px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-dashboard-card {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-dashboard-card {
        padding: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-dashboard-card {
        padding: 15px;
    }
}

.single-dashboard-card .icon {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    border-radius: 4px;
    font-size: 26px;
}

.single-dashboard-card .cat-caption .pera {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--ot-primary-paragraph);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-dashboard-card .cat-caption .pera {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-dashboard-card .cat-caption .pera {
        font-size: 14px;
    }
}

.single-dashboard-card .cat-caption .single-counter .counter,
.single-dashboard-card .cat-caption .single-counter .currency,
.single-dashboard-card .cat-caption .single-counter .amount {
    color: var(--ot-primary-title);
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 20px;
    line-height: 42px;
    margin-bottom: 7px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .single-dashboard-card .cat-caption .single-counter .counter,
    .single-dashboard-card .cat-caption .single-counter .currency,
    .single-dashboard-card .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media (max-width: 575px) {

    .single-dashboard-card .cat-caption .single-counter .counter,
    .single-dashboard-card .cat-caption .single-counter .currency,
    .single-dashboard-card .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    .single-dashboard-card .cat-caption .single-counter .counter,
    .single-dashboard-card .cat-caption .single-counter .currency,
    .single-dashboard-card .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .single-dashboard-card .cat-caption .single-counter .counter,
    .single-dashboard-card .cat-caption .single-counter .currency,
    .single-dashboard-card .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

.single-dashboard-card .cat-caption .progresses i {
    font-size: 16px;
}

.single-dashboard-card .cat-caption .progresses span {
    font-size: 12px;
    text-transform: capitalize;
}

.single-card-two {
    padding: 20px 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--ot-primary-border);
}

@media (max-width: 575px) {
    .single-card-two {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-card-two {
        padding: 15px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-card-two {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-card-two {
        padding: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-card-two {
        padding: 15px;
    }
}

.single-card-two .icon {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 4px;
    font-size: 26px;
}

.single-card-two .cat-caption .pera {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--ot-primary-paragraph);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-card-two .cat-caption .pera {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-card-two .cat-caption .pera {
        font-size: 14px;
    }
}

.single-card-two .cat-caption .single-counter .counter,
.single-card-two .cat-caption .single-counter .currency,
.single-card-two .cat-caption .single-counter .amount {
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .single-card-two .cat-caption .single-counter .counter,
    .single-card-two .cat-caption .single-counter .currency,
    .single-card-two .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media (max-width: 575px) {

    .single-card-two .cat-caption .single-counter .counter,
    .single-card-two .cat-caption .single-counter .currency,
    .single-card-two .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    .single-card-two .cat-caption .single-counter .counter,
    .single-card-two .cat-caption .single-counter .currency,
    .single-card-two .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .single-card-two .cat-caption .single-counter .counter,
    .single-card-two .cat-caption .single-counter .currency,
    .single-card-two .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

.payment-card .col-xxl-3:nth-child(1) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(1) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(1) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(1) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(1) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(1) .single-card-two .single-counter .amount {
    color: var(--ot-primary);
}

.payment-card .col-xxl-3:nth-child(2) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(2) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(2) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(2) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(2) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(2) .single-card-two .single-counter .amount {
    color: #fa5f1c;
}

.payment-card .col-xxl-3:nth-child(3) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(3) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(3) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(3) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(3) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(3) .single-card-two .single-counter .amount {
    color: #2b5d83;
}

.payment-card .col-xxl-3:nth-child(4) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(4) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(4) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(4) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(4) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(4) .single-card-two .single-counter .amount {
    color: #003dd9;
}

.payment-card .col-xxl-3:nth-child(5) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(5) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(5) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(5) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(5) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(5) .single-card-two .single-counter .amount {
    color: #633ca7;
}

.payment-card .col-xxl-3:nth-child(6) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(6) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(6) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(6) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(6) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(6) .single-card-two .single-counter .amount {
    color: #087c7c;
}

.payment-card .col-xxl-3:nth-child(7) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(7) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(7) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(7) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(7) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(7) .single-card-two .single-counter .amount {
    color: #0D8549;
}

.payment-card .col-xxl-3:nth-child(8) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(8) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(8) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(8) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(8) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(8) .single-card-two .single-counter .amount {
    color: #8E3E63;
}

.payment-card .col-xxl-3:nth-child(9) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(9) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(9) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(9) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(9) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(9) .single-card-two .single-counter .amount {
    color: #37306B;
}

.payment-card .col-xxl-3:nth-child(10) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(10) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(10) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(10) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(10) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(10) .single-card-two .single-counter .amount {
    color: #2D5C7F;
}

.payment-card .col-xxl-3:nth-child(11) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(11) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(11) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(11) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(11) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(11) .single-card-two .single-counter .amount {
    color: #D9528B;
}

.payment-card .col-xxl-3:nth-child(12) .single-card-two .single-counter .counter,
.payment-card .col-xxl-3:nth-child(12) .single-card-two .single-counter .currency,
.payment-card .col-xxl-3:nth-child(12) .single-card-two .single-counter .amount,
.payment-card .col-xl-6:nth-child(12) .single-card-two .single-counter .counter,
.payment-card .col-xl-6:nth-child(12) .single-card-two .single-counter .currency,
.payment-card .col-xl-6:nth-child(12) .single-card-two .single-counter .amount {
    color: #E18237;
}

.ot-cart2 {
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--ot-primary-border);
}

.single-card-three {
    padding: 20px 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--ot-primary-border);
}

@media (max-width: 575px) {
    .single-card-three {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-card-three {
        padding: 15px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-card-three {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-card-three {
        padding: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-card-three {
        padding: 15px;
    }
}

.single-card-three .icon {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    border-radius: 4px;
    font-size: 26px;
    color: #2b5d83;
    background-color: rgba(12, 175, 96, 0.06);
}

.single-card-three .cat-caption .pera {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--ot-primary-paragraph);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-card-three .cat-caption .pera {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-card-three .cat-caption .pera {
        font-size: 14px;
    }
}

.single-card-three .cat-caption .single-counter .counter,
.single-card-three .cat-caption .single-counter .currency,
.single-card-three .cat-caption .single-counter .amount {
    color: #2b5d83;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 7px;
    line-height: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .single-card-three .cat-caption .single-counter .counter,
    .single-card-three .cat-caption .single-counter .currency,
    .single-card-three .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media (max-width: 575px) {

    .single-card-three .cat-caption .single-counter .counter,
    .single-card-three .cat-caption .single-counter .currency,
    .single-card-three .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    .single-card-three .cat-caption .single-counter .counter,
    .single-card-three .cat-caption .single-counter .currency,
    .single-card-three .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .single-card-three .cat-caption .single-counter .counter,
    .single-card-three .cat-caption .single-counter .currency,
    .single-card-three .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

.single-card-three .cat-caption .progresses i {
    font-size: 16px;
}

.single-card-three .cat-caption .progresses span {
    font-size: 12px;
    text-transform: capitalize;
}

.profile-card-color-one .icon,
.profile-card .col-xxl-3:nth-child(1) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(1) .profile-single-card .icon {
    color: #0caf60;
    background-color: rgba(12, 175, 96, 0.06);
}

.profile-card-color-two .icon,
.profile-card .col-xxl-3:nth-child(2) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(2) .profile-single-card .icon {
    color: #534aba;
    background-color: rgba(83, 74, 186, 0.06);
}

.profile-card-color-three .icon,
.profile-card .col-xxl-3:nth-child(3) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(3) .profile-single-card .icon {
    color: #ef746d;
    background-color: rgba(239, 116, 109, 0.06);
}

.profile-card-color-four .icon,
.profile-card .col-xxl-3:nth-child(4) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(4) .profile-single-card .icon {
    color: #003dd9;
    background-color: rgba(0, 61, 217, 0.06);
}

.profile-card-color-five .icon,
.profile-card .col-xxl-3:nth-child(5) .profile-single-card .icon,
.profile-card .col-xxl-4:nth-child(5) .profile-single-card .icon {
    color: #fa5f1c;
    background-color: rgba(255, 193, 7, 0.1);
}

.progress-up {
    color: #0caf60 !important;
}

.progress-down {
    color: #fa5f1c !important;
}

.profile-single-card {
    padding: 30px 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid var(--ot-primary-border);
}

@media (max-width: 575px) {
    .profile-single-card {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .profile-single-card {
        padding: 15px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .profile-single-card {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .profile-single-card {
        padding: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile-single-card {
        padding: 15px;
    }
}

.profile-single-card .icon {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white);
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 4px;
    font-size: 31px;
}

.profile-single-card .cat-caption .pera {
    font-size: 16px;
    margin-bottom: 0px;
    color: var(--ot-primary-paragraph);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .profile-single-card .cat-caption .pera {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .profile-single-card .cat-caption .pera {
        font-size: 14px;
    }
}

.profile-single-card .cat-caption .single-counter .counter,
.profile-single-card .cat-caption .single-counter .currency,
.profile-single-card .cat-caption .single-counter .amount {
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 17px;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .profile-single-card .cat-caption .single-counter .counter,
    .profile-single-card .cat-caption .single-counter .currency,
    .profile-single-card .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media (max-width: 575px) {

    .profile-single-card .cat-caption .single-counter .counter,
    .profile-single-card .cat-caption .single-counter .currency,
    .profile-single-card .cat-caption .single-counter .amount {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    .profile-single-card .cat-caption .single-counter .counter,
    .profile-single-card .cat-caption .single-counter .currency,
    .profile-single-card .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .profile-single-card .cat-caption .single-counter .counter,
    .profile-single-card .cat-caption .single-counter .currency,
    .profile-single-card .cat-caption .single-counter .amount {
        font-size: 14px;
    }
}

.profile-card .col-xxl-3:nth-child(1) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-3:nth-child(1) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-3:nth-child(1) .profile-single-card .single-counter .amount,
.profile-card .col-xxl-4:nth-child(1) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-4:nth-child(1) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-4:nth-child(1) .profile-single-card .single-counter .amount {
    color: #0caf60;
}

.profile-card .col-xxl-3:nth-child(2) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-3:nth-child(2) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-3:nth-child(2) .profile-single-card .single-counter .amount,
.profile-card .col-xxl-4:nth-child(2) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-4:nth-child(2) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-4:nth-child(2) .profile-single-card .single-counter .amount {
    color: var(--ot-primary);
}

.profile-card .col-xxl-3:nth-child(3) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-3:nth-child(3) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-3:nth-child(3) .profile-single-card .single-counter .amount,
.profile-card .col-xxl-4:nth-child(3) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-4:nth-child(3) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-4:nth-child(3) .profile-single-card .single-counter .amount {
    color: var(--ot-tertiary);
}

.profile-card .col-xxl-3:nth-child(4) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-3:nth-child(4) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-3:nth-child(4) .profile-single-card .single-counter .amount,
.profile-card .col-xxl-4:nth-child(4) .profile-single-card .single-counter .counter,
.profile-card .col-xxl-4:nth-child(4) .profile-single-card .single-counter .currency,
.profile-card .col-xxl-4:nth-child(4) .profile-single-card .single-counter .amount {
    color: #fa5f1c;
}

.profile-timeline {
    display: inline-block;
}

.profile-timeline .single-time-line {
    margin-left: 85px;
    min-height: 50px;
    border-left: 2px dashed var(--ot-secondary);
    padding: 0 0 5px 30px;
    position: relative;
}

.profile-timeline .single-time-line:last-child {
    border-left: 2px dashed transparent;
}

.profile-timeline .single-time-line.new-order::before {
    background: var(--ot-secondary);
}

.profile-timeline .single-time-line.make-deposit::before {
    background: var(--ot-primary);
}

.profile-timeline .single-time-line.withdraw::before {
    background: var(--ot-tertiary);
}

.profile-timeline .single-time-line.cancel-order::before {
    content: "\eb99" !important;
    background: #ff6767 !important;
}

.profile-timeline .single-time-line.new-product-add::before {
    background: #1ea7ff;
}

.profile-timeline .single-time-line::before {
    position: absolute;
    left: -14px;
    top: -2px;
    content: "\eb7b";
    font-family: var(--remix-icon);
    color: #fff;
    text-align: center;
    line-height: 23px;
    border-radius: 500%;
    background: var(--ot-secondary);
    height: 25px;
    width: 25px;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    border: 2px solid #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
}

.profile-timeline .single-time-line .time {
    color: var(--ot-primary-paragraph);
    position: absolute;
    width: 80px;
    left: -37%;
    text-align: right;
    font-size: 12px;
    top: 3px;
}

@media (max-width: 575px) {
    .profile-timeline .single-time-line .time {
        left: -84%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .profile-timeline .single-time-line .time {
        left: -51%;
    }
}

.profile-timeline .single-time-line .time-title {
    font-size: 12px;
    color: var(--ot-primary-paragraph);
}

.max-height-400 {
    max-height: 400px;
}

.profile {
    padding: 20px 20px;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid var(--ot-primary-border);
}

.profile .profile-img {
    max-width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

/* Reset CSS */
.o-hidden {
    overflow: hidden;
}

.o-visible {
    overflow: visible;
}

.o-auto {
    overflow: auto;
}

.text-1 {
    font-size: 1px !important;
}

.text-2 {
    font-size: 2px !important;
}

.text-3 {
    font-size: 3px !important;
}

.text-4 {
    font-size: 4px !important;
}

.text-5 {
    font-size: 5px !important;
}

.text-6 {
    font-size: 6px !important;
}

.text-7 {
    font-size: 7px !important;
}

.text-8 {
    font-size: 8px !important;
}

.text-9 {
    font-size: 9px !important;
}

.text-10 {
    font-size: 10px !important;
}

.text-11 {
    font-size: 11px !important;
}

.text-12 {
    font-size: 12px !important;
}

.text-13 {
    font-size: 13px !important;
}

.text-14 {
    font-size: 14px !important;
}

.text-15 {
    font-size: 15px !important;
}

.text-16 {
    font-size: 16px !important;
}

.text-17 {
    font-size: 17px !important;
}

.text-18 {
    font-size: 18px !important;
}

.text-19 {
    font-size: 19px !important;
}

.text-20 {
    font-size: 20px !important;
}

.text-21 {
    font-size: 21px !important;
}

.text-22 {
    font-size: 22px !important;
}

.text-23 {
    font-size: 23px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-25 {
    font-size: 25px !important;
}

.text-26 {
    font-size: 26px !important;
}

.text-27 {
    font-size: 27px !important;
}

.text-28 {
    font-size: 28px !important;
}

.text-29 {
    font-size: 29px !important;
}

.text-30 {
    font-size: 30px !important;
}

.text-31 {
    font-size: 31px !important;
}

.text-32 {
    font-size: 32px !important;
}

.text-33 {
    font-size: 33px !important;
}

.text-34 {
    font-size: 34px !important;
}

.text-35 {
    font-size: 35px !important;
}

.text-36 {
    font-size: 36px !important;
}

.text-37 {
    font-size: 37px !important;
}

.text-38 {
    font-size: 38px !important;
}

.text-39 {
    font-size: 39px !important;
}

.text-40 {
    font-size: 40px !important;
}

.text-41 {
    font-size: 41px !important;
}

.text-42 {
    font-size: 42px !important;
}

.text-43 {
    font-size: 43px !important;
}

.text-44 {
    font-size: 44px !important;
}

.text-45 {
    font-size: 45px !important;
}

.text-46 {
    font-size: 46px !important;
}

.text-47 {
    font-size: 47px !important;
}

.text-48 {
    font-size: 48px !important;
}

.text-49 {
    font-size: 49px !important;
}

.text-50 {
    font-size: 50px !important;
}

.font-100 {
    font-weight: 100;
}

.font-200 {
    font-weight: 200;
}

.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.font-900 {
    font-weight: 900;
}

.h-calc {
    height: 100%;
}

.text-primary {
    color: var(--ot-primary) !important;
}

.text-secondary {
    color: var(--body_text) !important;
}

.text-tertiary {
    color: var(--ot-tertiary) !important;
}

.text-success {
    color: #3cc13b !important;
}

.text-danger {
    color: #ff3030 !important;
}

.text-danger-soft {
    color: #fa5f1c !important;
}

.text-info {
    color: #717171 !important;
}

.text-light {
    color: #e6edef !important;
}

.text-dark {
    color: #2c323f !important;
}

.text-white {
    color: var(--white) !important;
}

.text-warning {
    color: #e2c636 !important;
}

.text-title {
    color: var(--ot-primary-title) !important;
}

.text-orange {
    color: orange !important;
}

.radius-0 {
    border-radius: 0 !important;
}

.radius-1 {
    border-radius: 1px !important;
}

.radius-2 {
    border-radius: 2px !important;
}

.radius-3 {
    border-radius: 3px !important;
}

.radius-4 {
    border-radius: 4px !important;
}

.radius-5 {
    border-radius: 5px !important;
}

.radius-6 {
    border-radius: 6px !important;
}

.radius-7 {
    border-radius: 7px !important;
}

.radius-8 {
    border-radius: 8px !important;
}

.radius-9 {
    border-radius: 9px !important;
}

.radius-10 {
    border-radius: 10px !important;
}

.radius-11 {
    border-radius: 11px !important;
}

.radius-12 {
    border-radius: 12px !important;
}

.radius-13 {
    border-radius: 13px !important;
}

.radius-14 {
    border-radius: 14px !important;
}

.radius-15 {
    border-radius: 15px !important;
}

.radius-16 {
    border-radius: 16px !important;
}

.radius-17 {
    border-radius: 17px !important;
}

.radius-18 {
    border-radius: 18px !important;
}

.radius-19 {
    border-radius: 19px !important;
}

.radius-20 {
    border-radius: 20px !important;
}

.dropdown-text-light {
    color: #6f767e;
}

.dropdown-text-dark {
    color: #1a1d1f;
}

.dropdown-text-red {
    color: #ff0022;
}

.dropdown-text-disable {
    color: #b2bec3;
}

.dropdown-text-blue {
    color: var(--ot-primary);
}

.dropdown-content {
    margin-top: 24px;
    margin-left: 32px;
}

.dropdown-section {
    padding: 80px;
    background: #fcfcfc;
    margin-top: 8px;
}

.dropdown-section h1 {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #120d26;
}

.dropdown-section p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4b4b4b;
}

.button-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #120d26;
}

.dropdown-with-down-arrow,
.dropdown2-with-down-arrow {
    margin-top: 12px;
    background-color: #fcfcfc;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    letter-spacing: 0.02em;
    color: #1a1d1f;
    border: 2px solid #f0eeee;
    border-radius: 5px;
}

.dropdown-with-down-arrow i,
.dropdown2-with-down-arrow i {
    margin-left: 12px;
    font-weight: bold;
}

.dropdown-with-down-arrow:hover,
.dropdown2-with-down-arrow:hover {
    border: 2px solid var(--ot-primary);
    color: var(--ot-primary);
}

.dropdown-with-down-arrow:hover i,
.dropdown2-with-down-arrow:hover i {
    color: var(--ot-primary);
}

.dropdown-with-down-arrow:focus,
.dropdown2-with-down-arrow:focus {
    border: 2px solid #4d5ee5;
    color: #066ecf;
}

.dropdown-with-down-arrow:focus i,
.dropdown2-with-down-arrow:focus i {
    color: #066ecf;
}

.dropdwon-btn-section {
    margin-top: 40px;
}

.dropdown-with-dots {
    margin-top: 12px;
}

button {
    border: none;
    outline: none;
}

#dropdown {
    background-color: #fcfcfc;
    border: 2px solid #f0eeee;
    border-radius: 5px 0px 0px 5px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    letter-spacing: 0.02em;
    color: #1a1d1f;
}

#dropdown:hover {
    border: 2px solid var(--ot-primary);
    color: var(--ot-primary);
}

#dropdown:focus {
    border: 2px solid #4d5ee5;
    color: #066ecf;
}

#three-dots {
    background-color: #fcfcfc;
    border: 2px solid #f0eeee;
    border-radius: 0px 5px 5px 0px;
    padding: 8px;
    letter-spacing: 0.02em;
    color: #1a1d1f;
}

#three-dots:hover {
    border: 2px solid var(--ot-primary);
    color: var(--ot-primary);
}

#three-dots:focus {
    border: 2px solid #4d5ee5;
    color: #066ecf;
}

.dropdown-items,
.second-item,
.third-item {
    position: relative;
    width: 191px;
    background: #ffffff;
    border: 1px solid #f0eeee;
    border-radius: 7px;
}

.dropdown-items ul,
.second-item ul,
.third-item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 16px;
    padding-right: 0px;
    gap: 16px;
}

.dropdown-items ul .text-secondary>i,
.second-item ul .text-secondary>i,
.third-item ul .text-secondary>i {
    padding-right: 16px;
}

.dropdown-items ul li,
.second-item ul li,
.third-item ul li {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    padding-right: 24px;
}

.dropdown-items ul .dropdown-text-dark>i,
.second-item ul .dropdown-text-dark>i,
.third-item ul .dropdown-text-dark>i {
    padding-left: 16px;
}

.second-item {
    display: block;
    width: 180px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 100%;
    margin-top: -40px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

.third-item {
    display: none;
    width: 180px;
    position: absolute;
    left: 112%;
    margin-top: -66px;
}

ul li.dropdown-text-dark:hover .second-item {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    margin-left: 10px;
}

.dropdown-search-checkbox {
    margin-top: 12px;
    background-color: #fcfcfc;
    border: 2px solid #f0eeee;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    color: var(--ot-primary);
}

.search-container {
    margin-top: 12px;
    width: 272px;
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
}

.search-input-checkbox input {
    width: 20px !important;
    height: 20px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.search-input-checkbox label {
    color: #6f767e;
    margin-left: 12px;
}

.search-input-checkbox ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.search-input {
    position: relative;
    text-align: center;
    padding: 15px 16px 15px 16px;
    border-bottom: 2px solid #f0eeee;
}

.search-input input {
    padding: 12px;
    width: 100%;
    border: 2px solid #f0eeee;
    border-radius: 50px;
    background: #fafafa;
    outline: none;
}

.search-input::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input i {
    position: absolute;
    top: 29px;
    right: 27px;
    padding: 5px;
    background-color: #fafafa;
    color: #6f767e;
}

.search-items {
    padding: 17px 25px;
}

.search-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.search-items ul li {
    color: #6f767e;
}

.search-input ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 8px 16px;
    gap: 16px;
}

.search-input ul li {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #6f767e;
}

.search-input ul li input {
    width: auto;
}

.search-input ul li::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-container .btn-items {
    padding: 5px 17px 25px;
    text-align: end;
}

.search-container .btn-items .btn {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.search-container .btn-items .btn.clear {
    color: #6f767e;
}

.input-default input,
.input-date input {
    padding: 16px;
    width: 336px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-default::-webkit-input-placeholder,
.input-date::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default::-moz-placeholder,
.input-date::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default:-ms-input-placeholder,
.input-date:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default::-ms-input-placeholder,
.input-date::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default::placeholder,
.input-date::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus {
    width: 360px;
}

.input-field-focus input {
    width: 100%;
    height: 48px;
    padding: 16px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-field-focus input:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 2px solid #0010f7;
    outline: none;
}

.input-field-focus::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon {
    position: relative;
    margin-top: 16px;
    width: 336px;
    height: 48px;
}

.input-with-icon input {
    width: 336px;
    height: 48px;
    padding: 16px 45px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-with-icon input:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 2px solid #0010f7;
    outline: none;
}

.input-with-icon::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-with-icon i.fa-user-o {
    left: 20px;
}

.input-with-icon i.fa-search {
    right: 20px;
}

.input-pre-post {
    position: relative;
    margin-top: 16px;
    width: 296px;
    height: 48px;
}

.input-pre-post input {
    padding: 16px 45px;
    width: 296px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-pre-post::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-pre-post i.fa-user-o {
    left: 20px;
}

.input-pre-post i.fa-search {
    right: 60px;
}

.input-pre-post img {
    position: absolute;
    top: 2px;
    right: 1px;
    padding: 15px;
    width: 47px;
    background-color: #f7f7f7;
    border-left: 2px solid #f0eeee;
    border-radius: 0px 5px 5px 0px;
}

.input-https-post {
    position: relative;
    margin-top: 16px;
    width: 296px;
    height: 48px;
}

.input-https-post input {
    padding: 16px 43px 16px 110px;
    width: 296px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-https-post::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-https-post i.fa-user-o {
    left: 88px;
}

.input-https-post img {
    position: absolute;
    top: 2px;
    right: 1px;
    padding: 15px;
    width: 47px;
    background-color: #f7f7f7;
    border-left: 2px solid #f0eeee;
    border-radius: 0px 5px 5px 0px;
}

.input-https-post .https {
    position: absolute;
    color: #1a1d1f;
    top: 2px;
    left: 1.5px;
    background-color: #f7f7f7;
    padding: 12px;
    border-right: 2px solid #f0eeee;
    border-radius: 5px 0px 0px 5px;
}

.input-https-post2 {
    position: relative;
    margin-top: 16px;
    width: 296px;
    height: 48px;
}

.input-https-post2 input {
    padding: 16px 43px 16px 86px;
    width: 296px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-https-post2::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2 i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-https-post2 i.fa-user-o {
    left: 88px;
}

.input-https-post2 i.fa-search {
    right: 20px;
}

.input-https-post2 .https {
    position: absolute;
    color: #1a1d1f;
    top: 2px;
    left: 1.5px;
    background-color: #f7f7f7;
    padding: 12px;
    border-right: 2px solid #f0eeee;
    border-radius: 5px 0px 0px 5px;
}

textarea::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.text-area {
    width: 280px;
    height: 79px;
}

.text-area .text-count {
    font-family: var(--poppins);
    font-size: 10px;
    font-weight: 500;
    text-align: end;
    color: #b2bec3;
}

.Input-search-tab {
    position: relative;
    margin-top: 16px;
    width: 273px;
    height: 48px;
}

.Input-search-tab input {
    padding: 16px 43px 16px 16px;
    width: 100%;
    height: 100%;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.Input-search-tab::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab i {
    position: absolute;
    top: 0;
    color: #6f767e;
    border-left: 2px solid #f0eeee;
    padding: 16px;
}

.Input-search-tab i.fa-search {
    right: 0px;
}

.Input-search-tab .search {
    position: absolute;
    color: #ffffff;
    top: 0px;
    right: 0px;
    background-color: var(--ot-primary);
    padding: 13px;
    border-radius: 0px 5px 5px 0px;
}

.Input-search-tab i.fa-microphone {
    right: 70px;
    color: var(--ot-primary);
    border: none;
}

.Input-search-tab.search-color>input {
    width: 289px;
}

.Input-search-tab.search-color>i {
    right: -15px;
    color: #fafafa;
    background-color: var(--ot-primary);
    border-radius: 0px 5px 5px 0px;
}

.Input-search-tab .search-tab1 {
    width: 237px;
}

.Input-search-tab.microphone>input {
    padding: 16px 110px 16px 16px;
}

.input-date {
    margin-top: 16px;
}

.input-date input {
    width: 272px;
}

.Range-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 272px;
    height: 48px;
    -ms-flex-direction: row;
    flex-direction: row;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    margin-top: 16px;
    padding: 10px 16px;
    gap: 5px;
}

.Range-date input {
    border: none;
    outline: none;
}

.time-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 386px;
    gap: 5px;
    margin-top: 16px;
}

.time-field .input-time {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 107px;
    height: 50px;
}

.time-field .input-time select {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #1a1d1f;
    border: none;
    outline: none;
    padding: 11px 16px;
}

.time-field .select-time input {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 272px;
    height: 48px;
    outline: none;
    padding: 16px;
}

.input-group-start-end-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}

.input-group-start-end-time .input-start-end-time {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 169px;
    height: 44px;
    padding: 12px 16px;
    color: #6f767e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.input-group-start-end-time .input-start-end-time span {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

option:hover {
    color: var(--ot-primary);
}

.input-time-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
}

.input-time-select .input-start-end-time-select {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 178px;
    height: 60px;
    padding: 12px 16px;
    color: #6f767e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.input-time-select .input-start-end-time-select p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #0010f7;
}

.input-time-select .input-start-end-time-select h6 {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #1a1d1f;
}

/*
    --------------------------------------------------
    Reset CSS
    --------------------------------------------------
*/
.pa-0 {
    padding: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pv-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.ph-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.pa-2 {
    padding: 2px !important;
}

.pl-2 {
    padding-left: 2px !important;
}

.pt-2 {
    padding-top: 2px !important;
}

.pr-2 {
    padding-right: 2px !important;
}

.pb-2 {
    padding-bottom: 2px !important;
}

.pv-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.ph-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.pa-4 {
    padding: 4px !important;
}

.pl-4 {
    padding-left: 4px !important;
}

.pt-4 {
    padding-top: 4px !important;
}

.pr-4 {
    padding-right: 4px !important;
}

.pb-4 {
    padding-bottom: 4px !important;
}

.pv-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.ph-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.pa-6 {
    padding: 6px !important;
}

.pl-6 {
    padding-left: 6px !important;
}

.pt-6 {
    padding-top: 6px !important;
}

.pr-6 {
    padding-right: 6px !important;
}

.pb-6 {
    padding-bottom: 6px !important;
}

.pv-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.ph-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

.pa-8 {
    padding: 8px !important;
}

.pl-8 {
    padding-left: 8px !important;
}

.pt-8 {
    padding-top: 8px !important;
}

.pr-8 {
    padding-right: 8px !important;
}

.pb-8 {
    padding-bottom: 8px !important;
}

.pv-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.ph-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.pa-10 {
    padding: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pv-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ph-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.pa-12 {
    padding: 12px !important;
}

.pl-12 {
    padding-left: 12px !important;
}

.pt-12 {
    padding-top: 12px !important;
}

.pr-12 {
    padding-right: 12px !important;
}

.pb-12 {
    padding-bottom: 12px !important;
}

.pv-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.ph-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.pa-14 {
    padding: 14px !important;
}

.pl-14 {
    padding-left: 14px !important;
}

.pt-14 {
    padding-top: 14px !important;
}

.pr-14 {
    padding-right: 14px !important;
}

.pb-14 {
    padding-bottom: 14px !important;
}

.pv-14 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.ph-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.pa-16 {
    padding: 16px !important;
}

.pl-16 {
    padding-left: 16px !important;
}

.pt-16 {
    padding-top: 16px !important;
}

.pr-16 {
    padding-right: 16px !important;
}

.pb-16 {
    padding-bottom: 16px !important;
}

.pv-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.ph-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.pa-18 {
    padding: 18px !important;
}

.pl-18 {
    padding-left: 18px !important;
}

.pt-18 {
    padding-top: 18px !important;
}

.pr-18 {
    padding-right: 18px !important;
}

.pb-18 {
    padding-bottom: 18px !important;
}

.pv-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

.ph-18 {
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.pa-20 {
    padding: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pv-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.ph-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.pa-22 {
    padding: 22px !important;
}

.pl-22 {
    padding-left: 22px !important;
}

.pt-22 {
    padding-top: 22px !important;
}

.pr-22 {
    padding-right: 22px !important;
}

.pb-22 {
    padding-bottom: 22px !important;
}

.pv-22 {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
}

.ph-22 {
    padding-left: 22px !important;
    padding-right: 22px !important;
}

.pa-24 {
    padding: 24px !important;
}

.pl-24 {
    padding-left: 24px !important;
}

.pt-24 {
    padding-top: 24px !important;
}

.pr-24 {
    padding-right: 24px !important;
}

.pb-24 {
    padding-bottom: 24px !important;
}

.pv-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.ph-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.pa-26 {
    padding: 26px !important;
}

.pl-26 {
    padding-left: 26px !important;
}

.pt-26 {
    padding-top: 26px !important;
}

.pr-26 {
    padding-right: 26px !important;
}

.pb-26 {
    padding-bottom: 26px !important;
}

.pv-26 {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
}

.ph-26 {
    padding-left: 26px !important;
    padding-right: 26px !important;
}

.pa-28 {
    padding: 28px !important;
}

.pl-28 {
    padding-left: 28px !important;
}

.pt-28 {
    padding-top: 28px !important;
}

.pr-28 {
    padding-right: 28px !important;
}

.pb-28 {
    padding-bottom: 28px !important;
}

.pv-28 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.ph-28 {
    padding-left: 28px !important;
    padding-right: 28px !important;
}

.pa-30 {
    padding: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pv-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.ph-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.pa-32 {
    padding: 32px !important;
}

.pl-32 {
    padding-left: 32px !important;
}

.pt-32 {
    padding-top: 32px !important;
}

.pr-32 {
    padding-right: 32px !important;
}

.pb-32 {
    padding-bottom: 32px !important;
}

.pv-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.ph-32 {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.pa-34 {
    padding: 34px !important;
}

.pl-34 {
    padding-left: 34px !important;
}

.pt-34 {
    padding-top: 34px !important;
}

.pr-34 {
    padding-right: 34px !important;
}

.pb-34 {
    padding-bottom: 34px !important;
}

.pv-34 {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
}

.ph-34 {
    padding-left: 34px !important;
    padding-right: 34px !important;
}

.pa-36 {
    padding: 36px !important;
}

.pl-36 {
    padding-left: 36px !important;
}

.pt-36 {
    padding-top: 36px !important;
}

.pr-36 {
    padding-right: 36px !important;
}

.pb-36 {
    padding-bottom: 36px !important;
}

.pv-36 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

.ph-36 {
    padding-left: 36px !important;
    padding-right: 36px !important;
}

.pa-38 {
    padding: 38px !important;
}

.pl-38 {
    padding-left: 38px !important;
}

.pt-38 {
    padding-top: 38px !important;
}

.pr-38 {
    padding-right: 38px !important;
}

.pb-38 {
    padding-bottom: 38px !important;
}

.pv-38 {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
}

.ph-38 {
    padding-left: 38px !important;
    padding-right: 38px !important;
}

.pa-40 {
    padding: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pv-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.ph-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.pa-42 {
    padding: 42px !important;
}

.pl-42 {
    padding-left: 42px !important;
}

.pt-42 {
    padding-top: 42px !important;
}

.pr-42 {
    padding-right: 42px !important;
}

.pb-42 {
    padding-bottom: 42px !important;
}

.pv-42 {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
}

.ph-42 {
    padding-left: 42px !important;
    padding-right: 42px !important;
}

.pa-44 {
    padding: 44px !important;
}

.pl-44 {
    padding-left: 44px !important;
}

.pt-44 {
    padding-top: 44px !important;
}

.pr-44 {
    padding-right: 44px !important;
}

.pb-44 {
    padding-bottom: 44px !important;
}

.pv-44 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
}

.ph-44 {
    padding-left: 44px !important;
    padding-right: 44px !important;
}

.pa-46 {
    padding: 46px !important;
}

.pl-46 {
    padding-left: 46px !important;
}

.pt-46 {
    padding-top: 46px !important;
}

.pr-46 {
    padding-right: 46px !important;
}

.pb-46 {
    padding-bottom: 46px !important;
}

.pv-46 {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
}

.ph-46 {
    padding-left: 46px !important;
    padding-right: 46px !important;
}

.pa-48 {
    padding: 48px !important;
}

.pl-48 {
    padding-left: 48px !important;
}

.pt-48 {
    padding-top: 48px !important;
}

.pr-48 {
    padding-right: 48px !important;
}

.pb-48 {
    padding-bottom: 48px !important;
}

.pv-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

.ph-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
}

.pa-50 {
    padding: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pv-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ph-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.pa-52 {
    padding: 52px !important;
}

.pl-52 {
    padding-left: 52px !important;
}

.pt-52 {
    padding-top: 52px !important;
}

.pr-52 {
    padding-right: 52px !important;
}

.pb-52 {
    padding-bottom: 52px !important;
}

.pv-52 {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
}

.ph-52 {
    padding-left: 52px !important;
    padding-right: 52px !important;
}

.pa-54 {
    padding: 54px !important;
}

.pl-54 {
    padding-left: 54px !important;
}

.pt-54 {
    padding-top: 54px !important;
}

.pr-54 {
    padding-right: 54px !important;
}

.pb-54 {
    padding-bottom: 54px !important;
}

.pv-54 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
}

.ph-54 {
    padding-left: 54px !important;
    padding-right: 54px !important;
}

.pa-56 {
    padding: 56px !important;
}

.pl-56 {
    padding-left: 56px !important;
}

.pt-56 {
    padding-top: 56px !important;
}

.pr-56 {
    padding-right: 56px !important;
}

.pb-56 {
    padding-bottom: 56px !important;
}

.pv-56 {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
}

.ph-56 {
    padding-left: 56px !important;
    padding-right: 56px !important;
}

.pa-58 {
    padding: 58px !important;
}

.pl-58 {
    padding-left: 58px !important;
}

.pt-58 {
    padding-top: 58px !important;
}

.pr-58 {
    padding-right: 58px !important;
}

.pb-58 {
    padding-bottom: 58px !important;
}

.pv-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
}

.ph-58 {
    padding-left: 58px !important;
    padding-right: 58px !important;
}

.pa-60 {
    padding: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pv-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.ph-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.pa-62 {
    padding: 62px !important;
}

.pl-62 {
    padding-left: 62px !important;
}

.pt-62 {
    padding-top: 62px !important;
}

.pr-62 {
    padding-right: 62px !important;
}

.pb-62 {
    padding-bottom: 62px !important;
}

.pv-62 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
}

.ph-62 {
    padding-left: 62px !important;
    padding-right: 62px !important;
}

.pa-64 {
    padding: 64px !important;
}

.pl-64 {
    padding-left: 64px !important;
}

.pt-64 {
    padding-top: 64px !important;
}

.pr-64 {
    padding-right: 64px !important;
}

.pb-64 {
    padding-bottom: 64px !important;
}

.pv-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.ph-64 {
    padding-left: 64px !important;
    padding-right: 64px !important;
}

.pa-66 {
    padding: 66px !important;
}

.pl-66 {
    padding-left: 66px !important;
}

.pt-66 {
    padding-top: 66px !important;
}

.pr-66 {
    padding-right: 66px !important;
}

.pb-66 {
    padding-bottom: 66px !important;
}

.pv-66 {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
}

.ph-66 {
    padding-left: 66px !important;
    padding-right: 66px !important;
}

.pa-68 {
    padding: 68px !important;
}

.pl-68 {
    padding-left: 68px !important;
}

.pt-68 {
    padding-top: 68px !important;
}

.pr-68 {
    padding-right: 68px !important;
}

.pb-68 {
    padding-bottom: 68px !important;
}

.pv-68 {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
}

.ph-68 {
    padding-left: 68px !important;
    padding-right: 68px !important;
}

.pa-70 {
    padding: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pv-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.ph-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}

.pa-72 {
    padding: 72px !important;
}

.pl-72 {
    padding-left: 72px !important;
}

.pt-72 {
    padding-top: 72px !important;
}

.pr-72 {
    padding-right: 72px !important;
}

.pb-72 {
    padding-bottom: 72px !important;
}

.pv-72 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.ph-72 {
    padding-left: 72px !important;
    padding-right: 72px !important;
}

.pa-74 {
    padding: 74px !important;
}

.pl-74 {
    padding-left: 74px !important;
}

.pt-74 {
    padding-top: 74px !important;
}

.pr-74 {
    padding-right: 74px !important;
}

.pb-74 {
    padding-bottom: 74px !important;
}

.pv-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
}

.ph-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
}

.pa-76 {
    padding: 76px !important;
}

.pl-76 {
    padding-left: 76px !important;
}

.pt-76 {
    padding-top: 76px !important;
}

.pr-76 {
    padding-right: 76px !important;
}

.pb-76 {
    padding-bottom: 76px !important;
}

.pv-76 {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
}

.ph-76 {
    padding-left: 76px !important;
    padding-right: 76px !important;
}

.pa-78 {
    padding: 78px !important;
}

.pl-78 {
    padding-left: 78px !important;
}

.pt-78 {
    padding-top: 78px !important;
}

.pr-78 {
    padding-right: 78px !important;
}

.pb-78 {
    padding-bottom: 78px !important;
}

.pv-78 {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
}

.ph-78 {
    padding-left: 78px !important;
    padding-right: 78px !important;
}

.pa-80 {
    padding: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pv-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.ph-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.pa-82 {
    padding: 82px !important;
}

.pl-82 {
    padding-left: 82px !important;
}

.pt-82 {
    padding-top: 82px !important;
}

.pr-82 {
    padding-right: 82px !important;
}

.pb-82 {
    padding-bottom: 82px !important;
}

.pv-82 {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
}

.ph-82 {
    padding-left: 82px !important;
    padding-right: 82px !important;
}

.pa-84 {
    padding: 84px !important;
}

.pl-84 {
    padding-left: 84px !important;
}

.pt-84 {
    padding-top: 84px !important;
}

.pr-84 {
    padding-right: 84px !important;
}

.pb-84 {
    padding-bottom: 84px !important;
}

.pv-84 {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
}

.ph-84 {
    padding-left: 84px !important;
    padding-right: 84px !important;
}

.pa-86 {
    padding: 86px !important;
}

.pl-86 {
    padding-left: 86px !important;
}

.pt-86 {
    padding-top: 86px !important;
}

.pr-86 {
    padding-right: 86px !important;
}

.pb-86 {
    padding-bottom: 86px !important;
}

.pv-86 {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
}

.ph-86 {
    padding-left: 86px !important;
    padding-right: 86px !important;
}

.pa-88 {
    padding: 88px !important;
}

.pl-88 {
    padding-left: 88px !important;
}

.pt-88 {
    padding-top: 88px !important;
}

.pr-88 {
    padding-right: 88px !important;
}

.pb-88 {
    padding-bottom: 88px !important;
}

.pv-88 {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
}

.ph-88 {
    padding-left: 88px !important;
    padding-right: 88px !important;
}

.pa-90 {
    padding: 90px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pv-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.ph-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}

.pa-92 {
    padding: 92px !important;
}

.pl-92 {
    padding-left: 92px !important;
}

.pt-92 {
    padding-top: 92px !important;
}

.pr-92 {
    padding-right: 92px !important;
}

.pb-92 {
    padding-bottom: 92px !important;
}

.pv-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
}

.ph-92 {
    padding-left: 92px !important;
    padding-right: 92px !important;
}

.pa-94 {
    padding: 94px !important;
}

.pl-94 {
    padding-left: 94px !important;
}

.pt-94 {
    padding-top: 94px !important;
}

.pr-94 {
    padding-right: 94px !important;
}

.pb-94 {
    padding-bottom: 94px !important;
}

.pv-94 {
    padding-top: 94px !important;
    padding-bottom: 94px !important;
}

.ph-94 {
    padding-left: 94px !important;
    padding-right: 94px !important;
}

.pa-96 {
    padding: 96px !important;
}

.pl-96 {
    padding-left: 96px !important;
}

.pt-96 {
    padding-top: 96px !important;
}

.pr-96 {
    padding-right: 96px !important;
}

.pb-96 {
    padding-bottom: 96px !important;
}

.pv-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

.ph-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
}

.pa-98 {
    padding: 98px !important;
}

.pl-98 {
    padding-left: 98px !important;
}

.pt-98 {
    padding-top: 98px !important;
}

.pr-98 {
    padding-right: 98px !important;
}

.pb-98 {
    padding-bottom: 98px !important;
}

.pv-98 {
    padding-top: 98px !important;
    padding-bottom: 98px !important;
}

.ph-98 {
    padding-left: 98px !important;
    padding-right: 98px !important;
}

.pa-100 {
    padding: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pt-100 {
    padding-top: 110px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pv-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.ph-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.ma-0 {
    margin: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mv-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.mh-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.ma-2 {
    margin: 2px !important;
}

.ml-2 {
    margin-left: 2px !important;
}

.mt-2 {
    margin-top: 2px !important;
}

.mr-2 {
    margin-right: 2px !important;
}

.mb-2 {
    margin-bottom: 2px !important;
}

.mv-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}

.mh-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
}

.ma-4 {
    margin: 4px !important;
}

.ml-4 {
    margin-left: 4px !important;
}

.mt-4 {
    margin-top: 4px !important;
}

.mr-4 {
    margin-right: 4px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mv-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}

.mh-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
}

.ma-6 {
    margin: 6px !important;
}

.ml-6 {
    margin-left: 6px !important;
}

.mt-6 {
    margin-top: 6px !important;
}

.mr-6 {
    margin-right: 6px !important;
}

.mb-6 {
    margin-bottom: 6px !important;
}

.mv-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
}

.mh-6 {
    margin-left: 6px !important;
    margin-right: 6px !important;
}

.ma-8 {
    margin: 8px !important;
}

.ml-8 {
    margin-left: 8px !important;
}

.mt-8 {
    margin-top: 8px !important;
}

.mr-8 {
    margin-right: 8px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mv-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.mh-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
}

.ma-10 {
    margin: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mv-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mh-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.ma-12 {
    margin: 12px !important;
}

.ml-12 {
    margin-left: 12px !important;
}

.mt-12 {
    margin-top: 12px !important;
}

.mr-12 {
    margin-right: 12px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mv-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

.mh-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
}

.ma-14 {
    margin: 14px !important;
}

.ml-14 {
    margin-left: 14px !important;
}

.mt-14 {
    margin-top: 14px !important;
}

.mr-14 {
    margin-right: 14px !important;
}

.mb-14 {
    margin-bottom: 14px !important;
}

.mv-14 {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
}

.mh-14 {
    margin-left: 14px !important;
    margin-right: 14px !important;
}

.ma-16 {
    margin: 16px !important;
}

.ml-16 {
    margin-left: 16px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mr-16 {
    margin-right: 16px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mv-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}

.mh-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
}

.ma-18 {
    margin: 18px !important;
}

.ml-18 {
    margin-left: 18px !important;
}

.mt-18 {
    margin-top: 18px !important;
}

.mr-18 {
    margin-right: 18px !important;
}

.mb-18 {
    margin-bottom: 18px !important;
}

.mv-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
}

.mh-18 {
    margin-left: 18px !important;
    margin-right: 18px !important;
}

.ma-20 {
    margin: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mv-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mh-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.ma-22 {
    margin: 22px !important;
}

.ml-22 {
    margin-left: 22px !important;
}

.mt-22 {
    margin-top: 22px !important;
}

.mr-22 {
    margin-right: 22px !important;
}

.mb-22 {
    margin-bottom: 22px !important;
}

.mv-22 {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
}

.mh-22 {
    margin-left: 22px !important;
    margin-right: 22px !important;
}

.ma-24 {
    margin: 24px !important;
}

.ml-24 {
    margin-left: 24px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mr-24 {
    margin-right: 24px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mv-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.mh-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
}

.ma-26 {
    margin: 26px !important;
}

.ml-26 {
    margin-left: 26px !important;
}

.mt-26 {
    margin-top: 26px !important;
}

.mr-26 {
    margin-right: 26px !important;
}

.mb-26 {
    margin-bottom: 26px !important;
}

.mv-26 {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
}

.mh-26 {
    margin-left: 26px !important;
    margin-right: 26px !important;
}

.ma-28 {
    margin: 28px !important;
}

.ml-28 {
    margin-left: 28px !important;
}

.mt-28 {
    margin-top: 28px !important;
}

.mr-28 {
    margin-right: 28px !important;
}

.mb-28 {
    margin-bottom: 28px !important;
}

.mv-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
}

.mh-28 {
    margin-left: 28px !important;
    margin-right: 28px !important;
}

.ma-30 {
    margin: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mv-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mh-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.ma-32 {
    margin: 32px !important;
}

.ml-32 {
    margin-left: 32px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.mr-32 {
    margin-right: 32px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mv-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
}

.mh-32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
}

.ma-34 {
    margin: 34px !important;
}

.ml-34 {
    margin-left: 34px !important;
}

.mt-34 {
    margin-top: 34px !important;
}

.mr-34 {
    margin-right: 34px !important;
}

.mb-34 {
    margin-bottom: 34px !important;
}

.mv-34 {
    margin-top: 34px !important;
    margin-bottom: 34px !important;
}

.mh-34 {
    margin-left: 34px !important;
    margin-right: 34px !important;
}

.ma-36 {
    margin: 36px !important;
}

.ml-36 {
    margin-left: 36px !important;
}

.mt-36 {
    margin-top: 36px !important;
}

.mr-36 {
    margin-right: 36px !important;
}

.mb-36 {
    margin-bottom: 36px !important;
}

.mv-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
}

.mh-36 {
    margin-left: 36px !important;
    margin-right: 36px !important;
}

.ma-38 {
    margin: 38px !important;
}

.ml-38 {
    margin-left: 38px !important;
}

.mt-38 {
    margin-top: 38px !important;
}

.mr-38 {
    margin-right: 38px !important;
}

.mb-38 {
    margin-bottom: 38px !important;
}

.mv-38 {
    margin-top: 38px !important;
    margin-bottom: 38px !important;
}

.mh-38 {
    margin-left: 38px !important;
    margin-right: 38px !important;
}

.ma-40 {
    margin: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mv-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mh-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.ma-42 {
    margin: 42px !important;
}

.ml-42 {
    margin-left: 42px !important;
}

.mt-42 {
    margin-top: 42px !important;
}

.mr-42 {
    margin-right: 42px !important;
}

.mb-42 {
    margin-bottom: 42px !important;
}

.mv-42 {
    margin-top: 42px !important;
    margin-bottom: 42px !important;
}

.mh-42 {
    margin-left: 42px !important;
    margin-right: 42px !important;
}

.ma-44 {
    margin: 44px !important;
}

.ml-44 {
    margin-left: 44px !important;
}

.mt-44 {
    margin-top: 44px !important;
}

.mr-44 {
    margin-right: 44px !important;
}

.mb-44 {
    margin-bottom: 44px !important;
}

.mv-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
}

.mh-44 {
    margin-left: 44px !important;
    margin-right: 44px !important;
}

.ma-46 {
    margin: 46px !important;
}

.ml-46 {
    margin-left: 46px !important;
}

.mt-46 {
    margin-top: 46px !important;
}

.mr-46 {
    margin-right: 46px !important;
}

.mb-46 {
    margin-bottom: 46px !important;
}

.mv-46 {
    margin-top: 46px !important;
    margin-bottom: 46px !important;
}

.mh-46 {
    margin-left: 46px !important;
    margin-right: 46px !important;
}

.ma-48 {
    margin: 48px !important;
}

.ml-48 {
    margin-left: 48px !important;
}

.mt-48 {
    margin-top: 48px !important;
}

.mr-48 {
    margin-right: 48px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mv-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
}

.mh-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
}

.ma-50 {
    margin: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mv-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mh-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.ma-52 {
    margin: 52px !important;
}

.ml-52 {
    margin-left: 52px !important;
}

.mt-52 {
    margin-top: 52px !important;
}

.mr-52 {
    margin-right: 52px !important;
}

.mb-52 {
    margin-bottom: 52px !important;
}

.mv-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
}

.mh-52 {
    margin-left: 52px !important;
    margin-right: 52px !important;
}

.ma-54 {
    margin: 54px !important;
}

.ml-54 {
    margin-left: 54px !important;
}

.mt-54 {
    margin-top: 54px !important;
}

.mr-54 {
    margin-right: 54px !important;
}

.mb-54 {
    margin-bottom: 54px !important;
}

.mv-54 {
    margin-top: 54px !important;
    margin-bottom: 54px !important;
}

.mh-54 {
    margin-left: 54px !important;
    margin-right: 54px !important;
}

.ma-56 {
    margin: 56px !important;
}

.ml-56 {
    margin-left: 56px !important;
}

.mt-56 {
    margin-top: 56px !important;
}

.mr-56 {
    margin-right: 56px !important;
}

.mb-56 {
    margin-bottom: 56px !important;
}

.mv-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
}

.mh-56 {
    margin-left: 56px !important;
    margin-right: 56px !important;
}

.ma-58 {
    margin: 58px !important;
}

.ml-58 {
    margin-left: 58px !important;
}

.mt-58 {
    margin-top: 58px !important;
}

.mr-58 {
    margin-right: 58px !important;
}

.mb-58 {
    margin-bottom: 58px !important;
}

.mv-58 {
    margin-top: 58px !important;
    margin-bottom: 58px !important;
}

.mh-58 {
    margin-left: 58px !important;
    margin-right: 58px !important;
}

.ma-60 {
    margin: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mv-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mh-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}

.ma-62 {
    margin: 62px !important;
}

.ml-62 {
    margin-left: 62px !important;
}

.mt-62 {
    margin-top: 62px !important;
}

.mr-62 {
    margin-right: 62px !important;
}

.mb-62 {
    margin-bottom: 62px !important;
}

.mv-62 {
    margin-top: 62px !important;
    margin-bottom: 62px !important;
}

.mh-62 {
    margin-left: 62px !important;
    margin-right: 62px !important;
}

.ma-64 {
    margin: 64px !important;
}

.ml-64 {
    margin-left: 64px !important;
}

.mt-64 {
    margin-top: 64px !important;
}

.mr-64 {
    margin-right: 64px !important;
}

.mb-64 {
    margin-bottom: 64px !important;
}

.mv-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
}

.mh-64 {
    margin-left: 64px !important;
    margin-right: 64px !important;
}

.ma-66 {
    margin: 66px !important;
}

.ml-66 {
    margin-left: 66px !important;
}

.mt-66 {
    margin-top: 66px !important;
}

.mr-66 {
    margin-right: 66px !important;
}

.mb-66 {
    margin-bottom: 66px !important;
}

.mv-66 {
    margin-top: 66px !important;
    margin-bottom: 66px !important;
}

.mh-66 {
    margin-left: 66px !important;
    margin-right: 66px !important;
}

.ma-68 {
    margin: 68px !important;
}

.ml-68 {
    margin-left: 68px !important;
}

.mt-68 {
    margin-top: 68px !important;
}

.mr-68 {
    margin-right: 68px !important;
}

.mb-68 {
    margin-bottom: 68px !important;
}

.mv-68 {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
}

.mh-68 {
    margin-left: 68px !important;
    margin-right: 68px !important;
}

.ma-70 {
    margin: 70px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mv-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.mh-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
}

.ma-72 {
    margin: 72px !important;
}

.ml-72 {
    margin-left: 72px !important;
}

.mt-72 {
    margin-top: 72px !important;
}

.mr-72 {
    margin-right: 72px !important;
}

.mb-72 {
    margin-bottom: 72px !important;
}

.mv-72 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
}

.mh-72 {
    margin-left: 72px !important;
    margin-right: 72px !important;
}

.ma-74 {
    margin: 74px !important;
}

.ml-74 {
    margin-left: 74px !important;
}

.mt-74 {
    margin-top: 74px !important;
}

.mr-74 {
    margin-right: 74px !important;
}

.mb-74 {
    margin-bottom: 74px !important;
}

.mv-74 {
    margin-top: 74px !important;
    margin-bottom: 74px !important;
}

.mh-74 {
    margin-left: 74px !important;
    margin-right: 74px !important;
}

.ma-76 {
    margin: 76px !important;
}

.ml-76 {
    margin-left: 76px !important;
}

.mt-76 {
    margin-top: 76px !important;
}

.mr-76 {
    margin-right: 76px !important;
}

.mb-76 {
    margin-bottom: 76px !important;
}

.mv-76 {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
}

.mh-76 {
    margin-left: 76px !important;
    margin-right: 76px !important;
}

.ma-78 {
    margin: 78px !important;
}

.ml-78 {
    margin-left: 78px !important;
}

.mt-78 {
    margin-top: 78px !important;
}

.mr-78 {
    margin-right: 78px !important;
}

.mb-78 {
    margin-bottom: 78px !important;
}

.mv-78 {
    margin-top: 78px !important;
    margin-bottom: 78px !important;
}

.mh-78 {
    margin-left: 78px !important;
    margin-right: 78px !important;
}

.ma-80 {
    margin: 80px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mv-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

.mh-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
}

.ma-82 {
    margin: 82px !important;
}

.ml-82 {
    margin-left: 82px !important;
}

.mt-82 {
    margin-top: 82px !important;
}

.mr-82 {
    margin-right: 82px !important;
}

.mb-82 {
    margin-bottom: 82px !important;
}

.mv-82 {
    margin-top: 82px !important;
    margin-bottom: 82px !important;
}

.mh-82 {
    margin-left: 82px !important;
    margin-right: 82px !important;
}

.ma-84 {
    margin: 84px !important;
}

.ml-84 {
    margin-left: 84px !important;
}

.mt-84 {
    margin-top: 84px !important;
}

.mr-84 {
    margin-right: 84px !important;
}

.mb-84 {
    margin-bottom: 84px !important;
}

.mv-84 {
    margin-top: 84px !important;
    margin-bottom: 84px !important;
}

.mh-84 {
    margin-left: 84px !important;
    margin-right: 84px !important;
}

.ma-86 {
    margin: 86px !important;
}

.ml-86 {
    margin-left: 86px !important;
}

.mt-86 {
    margin-top: 86px !important;
}

.mr-86 {
    margin-right: 86px !important;
}

.mb-86 {
    margin-bottom: 86px !important;
}

.mv-86 {
    margin-top: 86px !important;
    margin-bottom: 86px !important;
}

.mh-86 {
    margin-left: 86px !important;
    margin-right: 86px !important;
}

.ma-88 {
    margin: 88px !important;
}

.ml-88 {
    margin-left: 88px !important;
}

.mt-88 {
    margin-top: 88px !important;
}

.mr-88 {
    margin-right: 88px !important;
}

.mb-88 {
    margin-bottom: 88px !important;
}

.mv-88 {
    margin-top: 88px !important;
    margin-bottom: 88px !important;
}

.mh-88 {
    margin-left: 88px !important;
    margin-right: 88px !important;
}

.ma-90 {
    margin: 90px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mv-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}

.mh-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
}

.ma-92 {
    margin: 92px !important;
}

.ml-92 {
    margin-left: 92px !important;
}

.mt-92 {
    margin-top: 92px !important;
}

.mr-92 {
    margin-right: 92px !important;
}

.mb-92 {
    margin-bottom: 92px !important;
}

.mv-92 {
    margin-top: 92px !important;
    margin-bottom: 92px !important;
}

.mh-92 {
    margin-left: 92px !important;
    margin-right: 92px !important;
}

.ma-94 {
    margin: 94px !important;
}

.ml-94 {
    margin-left: 94px !important;
}

.mt-94 {
    margin-top: 94px !important;
}

.mr-94 {
    margin-right: 94px !important;
}

.mb-94 {
    margin-bottom: 94px !important;
}

.mv-94 {
    margin-top: 94px !important;
    margin-bottom: 94px !important;
}

.mh-94 {
    margin-left: 94px !important;
    margin-right: 94px !important;
}

.ma-96 {
    margin: 96px !important;
}

.ml-96 {
    margin-left: 96px !important;
}

.mt-96 {
    margin-top: 96px !important;
}

.mr-96 {
    margin-right: 96px !important;
}

.mb-96 {
    margin-bottom: 96px !important;
}

.mv-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
}

.mh-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
}

.ma-98 {
    margin: 98px !important;
}

.ml-98 {
    margin-left: 98px !important;
}

.mt-98 {
    margin-top: 98px !important;
}

.mr-98 {
    margin-right: 98px !important;
}

.mb-98 {
    margin-bottom: 98px !important;
}

.mv-98 {
    margin-top: 98px !important;
    margin-bottom: 98px !important;
}

.mh-98 {
    margin-left: 98px !important;
    margin-right: 98px !important;
}

.ma-100 {
    margin: 100px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mv-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.mh-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

.gap-10 {
    gap: 10px;
}

.gap-0 {
    grid-gap: 0px !important;
}

.gap-1 {
    grid-gap: 1px !important;
}

.gap-2 {
    grid-gap: 2px !important;
}

.gap-3 {
    grid-gap: 3px !important;
}

.gap-4 {
    grid-gap: 4px !important;
}

.gap-5 {
    grid-gap: 5px !important;
}

.gap-6 {
    grid-gap: 6px !important;
}

.gap-7 {
    grid-gap: 7px !important;
}

.gap-8 {
    grid-gap: 8px !important;
}

.gap-9 {
    grid-gap: 9px !important;
}

.gap-10 {
    grid-gap: 10px !important;
}

.gap-11 {
    grid-gap: 11px !important;
}

.gap-12 {
    grid-gap: 12px !important;
}

.gap-13 {
    grid-gap: 13px !important;
}

.gap-14 {
    grid-gap: 14px !important;
}

.gap-15 {
    grid-gap: 15px !important;
}

.gap-16 {
    grid-gap: 16px !important;
}

.gap-17 {
    grid-gap: 17px !important;
}

.gap-18 {
    grid-gap: 18px !important;
}

.gap-19 {
    grid-gap: 19px !important;
}

.gap-20 {
    grid-gap: 20px !important;
}

.gap-21 {
    grid-gap: 21px !important;
}

.gap-22 {
    grid-gap: 22px !important;
}

.gap-23 {
    grid-gap: 23px !important;
}

.gap-24 {
    grid-gap: 24px !important;
}

.gap-25 {
    grid-gap: 25px !important;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: number-input;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--poppins);
}

/* Heading Text */
h6,
h5,
h4,
h3,
h2,
h1,
strong {
    font-family: var(--poppins);
    color: var(--ot-primary-title);
}

p,
a,
label,
small {
    color: var(--ot-secondary-title);
}

a {
    text-decoration: none;
}

.header.on-scroll {
    background: var(--ot-bg-secondary);
}

[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
    direction: inherit;
}

/* Topbar Dropdown Menu */
.topbar-dropdown-menu {
    max-width: 425px;
}

.topbar-dropdown-menu h1 {
    font-size: 20px;
    line-height: 32px;
    padding-left: 20px;
    font-weight: 600;
    color: var(--ot-primary-title);
}

.topbar-dropdown-menu .topbar-dropdown-content :last-child::before {
    content: none !important;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item {
    padding: 0px;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    white-space: normal;
    gap: 1rem;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item:hover {
    background-color: var(--ot-bg-primary);
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #efefef;
    left: 12px;
    right: 12px;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item:active {
    color: #1e2125;
    background-color: #e9ecef;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    position: relative;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater img {
    width: 100%;
    height: 100%;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater .item-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #6f767e;
    width: 10px;
    height: 10px;
    max-width: 10px;
    max-height: 10px;
    border-radius: 50%;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater .item-badge.active {
    background-color: #24c087;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater .item-badge.item-icon-badge {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    padding: 10px;
    background-color: var(--ot-primary);
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater .online-status-badge {
    width: 12px;
    height: 12px;
    border: 1px solid var(--white);
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-content h6 {
    font-size: 14px;
    line-height: 18px;
    color: var(--ot-primary-title);
    font-weight: 600;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-content h6 span {
    color: var(--ot-primary-title);
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-content h6.message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
    line-height: 15px;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-content h6.message span {
    font-size: 12px;
    font-weight: 400;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-status {
    color: var(--ot-primary-title);
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    min-width: 6px;
    min-height: 6px;
    background-color: #6f767e;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-status .status-dot.active {
    background: var(--ot-primary);
}

.topbar-dropdown-menu .topbar-dropdown-footer {
    background-color: #4d5ee5;
    padding: 12px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.topbar-dropdown-menu .topbar-dropdown-footer a {
    color: var(--white);
}

.topbar-dropdown-menu .topbar-dropdown-footer:hover {
    background-color: var(--ot-primary);
}

/* Profile Expand */
.profile-expand-dropdown .profile-expand-container .profile-expand-list {
    gap: 20px;
    padding: 20px;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item {
    position: relative;
    text-decoration: none;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item.divider {
    margin-bottom: 20px;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item.divider::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #efefef;
    left: 4px;
    right: 4px;
    height: 2px;
    top: 50px;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item span {
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: var(--ot-primary-title);
    text-transform: capitalize;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item i {
    line-height: 30px;
    color: var(--ot-primary-title);
    text-transform: capitalize;
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item:hover span {
    color: var(--ot-primary-title);
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* When Half Expand start*/
.theme-switch {
    height: 10%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    position: relative;
}

.theme-switch::before {
    content: "";
    width: 80%;
    height: 2px;
    border-radius: 10px;
    background: #fcfcfc;
    margin-right: 10px;
    position: absolute;
    top: 5px;
}

.theme-switch .switch-field {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--ot-bg-secondary);
    padding: 10px;
    border-radius: 2rem;
}

.theme-switch .switch-field input {
    display: none;
}

.theme-switch .switch-field label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #333;
    font-size: 1em;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 0.5em 1em;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    border-radius: 2rem;
    cursor: pointer;
    color: var(--ot-primary-title);
}

.theme-switch .switch-field label span {
    margin: 0;
    font-weight: 600;
}

.theme-switch .switch-field:hover {
    cursor: pointer;
}

.theme-switch .switch-field input:checked+label {
    background: var(--ot-primary);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.04);
    border-radius: 50px;
}

.theme-switch .switch-field input:checked+label span {
    color: var(--white);
}

.dark-theme .theme-switch .switch-field {
    background-color: var(--ot-bg-primary);
}

.main-content {
    margin-left: 320px;
    padding-top: 105px;
    transition: -webkit-left 0.3s;
    -webkit-transition: margin-left 0.3s;
    transition: margin-left 0.3s;
    transition: margin-left 0.3s, -webkit-margin-left 0.3s;
}

@media screen and (max-width: 991.98px) {
    .main-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100%;
        margin-left: 0;
        transition: -webkit-left 0.3s;
        -webkit-transition: margin-left 0.3s;
        transition: margin-left 0.3s;
        transition: margin-left 0.3s, -webkit-margin-left 0.3s;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        z-index: 30;
        background-color: var(--ot-bg-secondary);
        z-index: 30;
        left: -100%;
        transition: -webkit-left 0.3s;
        -webkit-transition: left 0.3s;
        transition: left 0.3s;
        transition: left 0.3s, -webkit-left 0.3s;
    }
}

@media (max-width: 991.98px) {
    .close-toggle {
        display: block !important;
    }
}

.main-content .dashboard-heading .title {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    text-transform: capitalize;
}

.ot-card {
    background-color: var(--ot-bg-secondary);
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    border-radius: 8px;
    padding: 20px 24px 24px 24px;
    border: none;
    border: 1px solid var(--ot-primary-border);
}

.ot-card .card-header,
.ot-card .card-body,
.ot-card .card-footer {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
}

.ot-card .card-body {
    padding-top: 20px;
}

/* Summery Card */
/* Summery Card */
.summery-card .card-heading .card-icon {
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.summery-card .card-heading .card-icon.icon-circle-1 {
    background-color: rgba(172, 224, 195, 0.1);
}

.summery-card .card-heading .card-icon.icon-circle-2 {
    background-color: rgba(194, 183, 252, 0.1);
}

.summery-card .card-heading .card-icon.icon-circle-3 {
    background-color: rgba(254, 179, 145, 0.1);
}

.summery-card .card-heading .card-icon.icon-circle-4 {
    background-color: rgba(168, 225, 249, 0.1);
}

.summery-card .card-heading .card-content {
    margin-left: 16px;
}

.summery-card .card-heading .card-content h4 {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 0px;
    color: var(--ot-secondary-title);
}

.summery-card .card-heading .card-content h1 {
    font-weight: 600;
    font-size: 38px;
    line-height: 42px;
    margin-top: 0px;
    color: var(--ot-primary-title);
}

.summery-card .card-bottom .card-states {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.summery-card .card-bottom .card-states .card-badge {
    border-radius: 50px;
    padding: 4px 7px;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ot-primary-title);
}

.summery-card .card-bottom .card-states .card-badge:first-child {
    background-color: #e9faf4;
}

.summery-card .card-bottom .card-states .card-badge:first-child .count {
    font-weight: 600;
    color: #7ab668;
}

.summery-card .card-bottom .card-states .card-badge:last-child {
    background-color: #fff0ed;
}

.summery-card .card-bottom .card-states .card-badge:last-child .count {
    font-weight: 600;
    color: #ff6a54;
}

.chart-custom-content p {
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
}

.chart-custom-content h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--ot-primary-title);
}

.chart-custom-content .percentage-spike img {
    width: 12px;
    height: 12px;
}

.chart-custom-content .percentage-spike .primary-blue {
    color: var(--ot-primary);
}

.chart-custom-content .percentage-spike .secondary-blue {
    color: #55b1f3;
}

.chart-custom-content .percentage-spike .primary-red {
    color: #ff4f75;
}

.chart-custom-content .percentage-spike .primary-yellow {
    color: #e7792a;
}

.chart-custom-content .percentage-spike:nth-child(1) {
    background-color: #feb391;
}

.chart-header p {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--ot-primary-title);
}

.statistics-card .card .card-bottom .card-states .btn.active-state-btn {
    background-color: #e9faf4;
}

.statistics-card .card .card-bottom .card-states .btn.active-state-btn .count {
    color: #24c087;
}

.statistics-card .card .card-bottom .card-states .btn.active-state-btn .status {
    color: var(--ot-primary-title);
}

.statistics-card .card .card-bottom .card-states .btn.inactive-state-btn {
    background-color: #fff0ed;
}

.statistics-card .card .card-bottom .card-states .btn.inactive-state-btn .count {
    color: var(#e55f4b);
}

.statistics-card .card .card-bottom .card-states .btn.inactive-state-btn .status {
    color: var(--ot-primary-title);
}

/* statistics-charts  */
.statistics-chart .visited-customer .card .card-top {
    margin-bottom: 15px;
}

.statistics-chart .visited-customer .card .card-top .title h4 {
    color: var(--ot-primary-title);
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}

.statistics-chart .visited-customer .card .card-top .card-content .stats {
    font-weight: 600;
}

.statistics-chart .visited-customer .card .card-top .statistics-chart .visited-customer .card .card-top .card-content .stats span.vs {
    margin-left: 12px;
}

.statistics-chart .visited-customer .card .card-top .card-content .btn.active-state-btn {
    background-color: #e9faf4;
}

.statistics-chart .visited-customer .card .card-top .card-content .btn.active-state-btn .count {
    color: var(--success-dark);
}

.ot-charts .card .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

@media (max-width: 576px) {
    .ot-charts .card .card-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
    }
}

.ot-charts .card .card-header h1 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

/* Charts */
.statistic-card .card-heading .card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #1a1d1f;
    margin: 0;
    padding: 0;
}

.ot-visit-chart .card-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ot-visit-chart p {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--ot-primary-title);
    margin-top: 8px;
}

.chart-custom-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 576px) {
    .chart-custom-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/* Common Buttons */
/* Common Buttons */
.ot-btn-common,
.ot-dropdown-btn,
.ot-btn-primary,
.ot-btn-success,
.ot-btn-danger,
.ot-btn-warning,
.ot-btn-info {
    background: var(--ot-primary);
    color: #ffffff !important;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--poppins);
    line-height: 20px;
    padding: 10px 17px;
    list-style: none;
    outline: 0;
}

.ot-btn-common.btn-lg,
.btn-lg.ot-dropdown-btn,
.btn-lg.ot-btn-primary,
.btn-lg.ot-btn-success,
.btn-lg.ot-btn-danger,
.btn-lg.ot-btn-warning,
.btn-lg.ot-btn-info {
    padding: 10px 17px;
}

.ot-btn-common.btn-md,
.btn-md.ot-dropdown-btn,
.btn-md.ot-btn-primary,
.btn-md.ot-btn-success,
.btn-md.ot-btn-danger,
.btn-md.ot-btn-warning,
.btn-md.ot-btn-info {
    padding: 10px 17px;
}

.ot-btn-common.btn-sm,
.btn-sm.ot-dropdown-btn,
.btn-sm.ot-btn-primary,
.btn-sm.ot-btn-success,
.btn-sm.ot-btn-danger,
.btn-sm.ot-btn-warning,
.btn-sm.ot-btn-info {
    padding: 10px 17px;
}

.ot-dropdown-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 13px;
}

.ot-dropdown-btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.ot-dropdown-btn::after {
    content: none;
}

.ot-btn-primary {
    background: var(--ot-primary);
}

.ot-btn-primary:hover {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#0f6aff),
            color-stop(90%, #21c6fb));
    background: linear-gradient(90deg, #0f6aff 0%, #21c6fb 90%);
}

.ot-btn-success {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#29d697),
            to(#00ffa2));
    background: linear-gradient(90deg, #29d697 0%, #00ffa2 100%);
}

.ot-btn-success:hover {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#29d697),
            color-stop(90%, #00ffa2));
    background: linear-gradient(90deg, #29d697 0%, #00ffa2 90%);
}

.ot-btn-danger {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#ff6a54),
            to(#fd2201));
    background: linear-gradient(90deg, #ff6a54 0%, #fd2201 100%);
}

.ot-btn-danger:hover {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#ff6a54),
            color-stop(90%, #fd2201));
    background: linear-gradient(90deg, #ff6a54 0%, #fd2201 90%);
}

.ot-btn-warning {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#fdc400),
            to(#fec403));
    background: linear-gradient(90deg, #fdc400 0%, #fec403 100%);
}

.ot-btn-warning:hover {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#fdc400),
            color-stop(90%, #fec403));
    background: linear-gradient(90deg, #fdc400 0%, #fec403 90%);
}

.ot-btn-info {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#138496),
            to(#00ddff));
    background: linear-gradient(90deg, #138496 0%, #00ddff 100%);
}

.ot-btn-info:hover {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00ddff),
            color-stop(90%, #00ddff));
    background: linear-gradient(90deg, #00ddff 0%, #00ddff 90%);
}

/* Tables */
.badge-basic-success-text {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    color: #2b5d83;
}

.badge-basic-danger-text {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    color: #ef746d;
}

.badge-basic-warning-text {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    color: #e7792a;
}

.badge-basic-info-text {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    color: #00dfe5;
}

.badge-basic-primary-text {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    color: var(--ot-primary);
}

.page-heading h1 {
    font-size: 30px;
    line-height: 38px;
    color: #1a1d1f;
}

.component-page-heading h1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}

.progress-size,
.progress-darkblue,
.progress-green,
.progress-violet,
.progress-skyblue,
.progress-darkviolet {
    width: 100%;
    height: 8px;
}

.progress-darkblue {
    background-color: #dde1ff;
}

.progress-darkblue .progress-bar-darkblue {
    border-radius: 5px;
    background-color: #0010f7;
}

.progress-green {
    background-color: #e9faf4;
}

.progress-green .progress-bar-green {
    border-radius: 5px;
    background-color: #29d697;
}

.progress-violet {
    background-color: #ebe7ff;
}

.progress-violet .progress-bar-violet {
    border-radius: 5px;
    background-color: #c8bbfb;
}

.progress-skyblue {
    background-color: #d5e8fe;
}

.progress-skyblue .progress-bar-skyblue {
    border-radius: 5px;
    background-color: #4797ff;
}

.progress-darkviolet {
    background-color: #e8defe;
}

.progress-darkviolet .progress-bar-darkviolet {
    border-radius: 5px;
    background-color: #9d6fff;
}

.ot-badge.primary {
    background-color: var(--ot-bg-primary);
    color: #7ab668;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    padding: 4px 10px;
    border-radius: 50px;
}

.btn-select-content {
    width: 305px;
    height: 50px;
}

.btn-select-content .btn-select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--ot-primary-border);
    border-radius: 5px;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    background-color: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.btn-select-content .btn-select:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 1px solid #0010f7;
    outline: none;
}

.btn-select-content ul {
    width: 305px;
    padding: 20px;
}

.btn-select-content .sub-menu {
    position: relative !important;
    width: 100% !important;
    -webkit-transform: translate(0px, 0px) !important;
    transform: translate(0px, 0px) !important;
}

.input-Range-date {
    height: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 0px 10px;
    gap: 25px;
}

.input-Range-date input {
    border: none;
    outline: none;
}

.input-Range-date:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 1px solid #0010f7;
    outline: none;
}

.btn-primary-custom {
    font-weight: 600;
    height: 50px;
    background: var(--ot-primary);
    border: none;
}

.input-search-with-icon {
    position: relative;
    width: 320px;
    height: 40px;
}

@media (max-width: 768px) {
    .input-search-with-icon {
        width: 200px;
    }
}

.input-search-with-icon input {
    background: var(--ot-bg-secondary);
    width: 100%;
    height: 100%;
    padding: 10px 45px 10px 16px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    outline: none;
}

.input-search-with-icon input:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 1px solid #0010f7;
    outline: none;
}

.input-search-with-icon::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-search-with-icon::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-search-with-icon:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-search-with-icon::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-search-with-icon::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-search-with-icon i {
    position: absolute;
    top: 12px;
    color: #6f767e;
}

.input-search-with-icon i.fa-search {
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.button-group {
    border-color: var(--ot-primary-title) !important;
}

.button-group:hover {
    background-color: rgba(161, 169, 255, 0.2039215686) !important;
    border-color: var(--ot-primary) !important;
}

.ot-search-with-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .ot-search-with-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
    }
}

.ot-search-with-btns .input-search-with-icon {
    position: relative;
    width: 200px;
    height: 40px;
}

.ot-table-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 576px) {
    .ot-table-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
    }
}

/* Accordion */
/* Signup, Signin */
.col-custom-height {
    min-height: 100vh;
}

.left-box .left-box-image img {
    max-width: 100%;
    max-height: 100%;
}

.left-box .title {
    font-weight: 700;
    font-size: 30px;
    background: var(--ot-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-box .text {
    color: var(--ot-primary-title);
    font-weight: 400;
    line-height: 28px;
}

.form-wrapper .form-content {
    width: 360px;
    margin-bottom: 40px;
}

.form-wrapper .form-content .form-heading-text .title {
    font-weight: 700;
    font-size: 38px;
    line-height: 54px;
    color: var(--ot-primary-title);
}

.form-wrapper .form-content .form-heading-text .text {
    color: var(--ot-primary-title);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.form-wrapper .form-content .form .input-field-focus {
    width: 360px;
}

.form-wrapper .form-content .form .input-field-focus label {
    color: var(--ot-primary-title);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
}

.form-wrapper .form-content .form .input-field-focus .password-input {
    position: relative;
}

.form-wrapper .form-content .form .input-field-focus .password-input i {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 16px;
    color: var(--ot-primary-title);
    cursor: pointer;
}

.form-wrapper .form-content .form .input-field-focus input {
    width: 100%;
    height: 48px;
    padding: 16px;
    border: 1px solid #eaeaea;
    border-radius: 7px;
    outline: none;
    color: #111314;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.form-wrapper .form-content .form .input-field-focus input:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 1px solid #0010f7;
    outline: none;
}

.form-wrapper .form-content .form .input-field-focus::-webkit-input-placeholder {
    color: #b2bec3;
    margin-top: 2px;
}

.form-wrapper .form-content .form .input-field-focus::-moz-placeholder {
    color: #b2bec3;
    margin-top: 2px;
}

.form-wrapper .form-content .form .input-field-focus:-ms-input-placeholder {
    color: #b2bec3;
    margin-top: 2px;
}

.form-wrapper .form-content .form .input-field-focus::-ms-input-placeholder {
    color: #b2bec3;
    margin-top: 2px;
}

.form-wrapper .form-content .form .input-field-focus::placeholder {
    color: #b2bec3;
    margin-top: 2px;
}

.form-wrapper .form-content .form .input-field-focus p {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
}

.form-wrapper .form-content .form .remember-me .form-check-input {
    border: 2px solid #eaeaea;
}

.form-wrapper .form-content .form .remember-me label {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #1a1d1f;
    margin-left: 4px;
}

.form-wrapper .form-content .text-font {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
    color: var(--ot-primary-title);
}

.form-wrapper .form-content .link-text {
    background: var(--ot-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-wrapper .form-content .text-privacy-policy {
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    color: var(--ot-primary-title);
}

.submit-button {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 100%;
    background: var(--ot-primary);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px 19px;
    cursor: pointer;
    text-transform: capitalize;
}

.submit-button:hover {
    background: var(--ot-secondary);
}

@media (max-width: 768px) {
    .frame {
        display: none !important;
    }

    .form-wrapper .form-content {
        width: 340px;
        padding: 20px;
    }

    .form-wrapper .form-content .form-heading-text .title {
        font-size: 30px;
    }

    .form-wrapper .form-content .form {
        width: 100%;
        gap: 10px;
    }

    .form-wrapper .form-content .form .input-field-focus {
        width: 100%;
    }

    .error-content {
        width: 410px !important;
        padding: 20px !important;
    }

    .error-content h1 {
        font-size: 28px !important;
    }
}

@media (max-width: 576px) {
    .form-wrapper .form-content {
        width: 320px;
        gap: 10px;
    }

    .form-wrapper .form-content .form-heading-text .title {
        font-size: 28px;
    }

    .form-wrapper .form-content .form-heading-text .text {
        font-size: 13px;
    }

    .form-wrapper .form-content .form .input-field-focus input {
        height: 40px;
        padding: 10px;
    }

    .form-wrapper .form-content .form label {
        font-size: 13px;
    }

    .social-media-content label {
        font-size: 13px;
    }

    .error-content {
        width: 320px !important;
        padding: 20px !important;
    }

    .error-content h1 {
        font-size: 24px !important;
    }
}

a:hover {
    color: var(--ot-primary);
}

.fogotPassword {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--ot-secondary);
    text-transform: capitalize;
}

.social-media-content {
    width: 100%;
}

.social-media-content .social-media-items {
    width: 100%;
    height: 48px;
    padding: 16px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    outline: none;
}

@media (max-width: 768px) {
    .social-media-content .social-media-items {
        font-family: var(--poppins);
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        color: #1a1d1f;
    }
}

.social-media-content .social-media-items:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 1px solid #0010f7;
}

.or-line {
    width: 45%;
    height: 1px;
    background-color: #eaeaea;
    margin-top: 8px;
}

.or-text {
    color: var(--ot-primary-title);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 26px;
}

/* Error Page */
.error-wrapper {
    width: 100%;
    height: 100vh;
}

.error-wrapper .error-content {
    width: 486px;
}

.error-wrapper .error-content h1 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 0px;
}

.error-wrapper .error-content img {
    width: 100%;
}

.error-wrapper .error-content p {
    font-family: var(--poppins);
    font-weight: 500;
    margin-bottom: 0px;
    color: #6f767e;
}

.error-wrapper .error-content .btn-group {
    margin-top: 28px;
    gap: 12px;
}

.error-wrapper .error-content .btn-group .time-count {
    padding: 2px;
    border-radius: 12px;
    background: var(--ot-primary);
}

.error-wrapper .error-content .btn-group .time-count .count-btn {
    padding: 16px 13px;
    border-radius: 10px;
    background: #ffffff;
}

.error-wrapper .error-content .btn-group .time-count .count-btn h1 {
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    background: var(--ot-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-back-to-homepage {
    width: 215px;
}

/* Card */
.basic-card .list-group {
    gap: 10px;
}

.basic-card .card-title {
    margin-bottom: 0;
}

.ot-card .ot-card-header {
    color: var(--ot-primary-title);
}

.ot-card-b {
    background: var(--ot-bg-secondary);
}

.ot-card-b .card-header {
    color: var(--ot-primary-title);
}

.customized .card-body {
    border-bottom: 1px solid #f0eeee;
    border-left: 1px solid #f0eeee;
    border-right: 1px solid #f0eeee;
    border-radius: 0px 0px 5px 5px;
}

.customized .card:hover {
    -webkit-box-shadow: 0px 5px 10px 0px lightgrey;
    box-shadow: 0px 5px 10px 0px lightgrey;
}

.customized-card .list-group {
    padding: 20px;
}

.customized-card .list-group li {
    background: var(--ot-bg-secondary);
    color: var(--ot-secondary-title);
    list-style: none;
}

.no-border-card .list-group {
    gap: 10px;
}

.no-border-card .card {
    -webkit-box-shadow: 0px 10px 20px 0px lightgrey;
    box-shadow: 0px 10px 20px 0px lightgrey;
}

.simple-card .list-group {
    gap: 10px;
}

/* Modal */
.information-modal .fa,
.confirmation-modal .fa {
    font-size: 28px;
}

.information-modal .modal-footer,
.confirmation-modal .modal-footer {
    border-top: none;
}

.modal-header-image {
    background-size: cover;
    background-color: transparent;
    background-repeat: no-repeat;
    padding: 19.5px 17px;
    border-bottom: 1px solid #f4f4f4;
    margin: 0 !important;
}

.btn-close {
    background: rgba(255, 255, 255, 0.3215686275);
    border-radius: 50%;
}

.btn-gradian {
    color: var(--white);
    border: none;
    font-weight: 500;
    background: var(--ot-primary);
}

.ot-card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 768px) {
    .ot-card-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
    }
}

/* Alert */
.alert-section {
    background: var(--white);
    padding: 80px;
    background: #fcfcfc;
    margin-top: 8px;
}

.alert-section h1 {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #120d26;
}

.alert-section p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4b4b4b;
}

.close-icon {
    float: right;
}

.basic-success-alert {
    padding: 15px;
    background-color: var(--ot-bg-badge-light-success);
    color: #29d697;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.basic-success-alert .success-icon {
    color: #29d697;
}

.basic-secondary-alert {
    padding: 15px;
    background-color: var(--ot-bg-badge-light-primary);
    color: #4d5ee5;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.basic-secondary-alert .secondary-icon {
    color: #4d5ee5;
}

.basic-warning-alert {
    padding: 15px;
    background-color: var(--ot-bg-badge-light-warning);
    color: #fdc400;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.basic-warning-alert .warning-icon {
    color: #fdc400;
}

.basic-danger-alert {
    padding: 15px;
    background-color: var(--ot-bg-badge-light-danger);
    color: #ff6a54;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.basic-danger-alert .danger-icon {
    color: #ff6a54;
}

.alert-success-describe h4,
.alert-success-describe p {
    color: #29d697;
}

.alert-secondary-describe h4,
.alert-secondary-describe p {
    color: #4d5ee5;
}

.alert-warning-describe h4,
.alert-warning-describe p {
    color: #fdc400;
}

.alert-danger-describe h4,
.alert-danger-describe p {
    color: #ff6a54;
}

/* Color Template */
.color-title {
    background-color: transparent;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
}

.color-title h4 {
    font-size: 24px;
}

.color-background {
    width: 100%;
    height: 150px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.color-background.bg-blue-primary {
    background: #4d5ee5;
}

.color-background.bg-blue-dark {
    background: var(--ot-primary);
}

.color-background.bg-blue-tint {
    background: #8896ff;
}

.color-background.bg-blue-tint-light {
    background: #eef0ff;
}

.color-background.bg-cyan-primary {
    background: #00f8ff;
}

.color-background.bg-cyan-dark {
    background: #00dfe5;
}

.color-background.bg-cyan-tint {
    background: #4cfaff;
}

.color-background.bg-cyan-tint-light {
    background: #e5feff;
}

.color-background.bg-success-primary {
    background: #29d697;
}

.color-background.bg-success-dark {
    background: #24c087;
}

.color-background.bg-success-tint {
    background: #69e2b6;
}

.color-background.bg-success-tint-light {
    background: #e9faf4;
}

.color-background.bg-danger-primary {
    background: #ff6a54;
}

.color-background.bg-danger-dark {
    background: #e55f4b;
}

.color-background.bg-danger-tint {
    background: #ff9687;
}

.color-background.bg-danger-tint-light {
    background: #fff0ed;
}

.color-background.bg-warning-primary {
    background: #fdc400;
}

.color-background.bg-warning-dark {
    background: #e3b000;
}

.color-background.bg-warning-tint {
    background: #fdd54c;
}

.color-background.bg-warning-tint-light {
    background: #fef9e5;
}

.color-background.bg-accent-green {
    background: #93c782;
}

.color-background.bg-accent-blue {
    background: #4797ff;
}

.color-background.bg-accent-purple {
    background: #9d6fff;
}

.color-background.bg-accent-light-green {
    background: #b5e4ca;
}

.color-background.bg-accent-light-blue {
    background: #b1e5fc;
}

.color-background.bg-accent-light-purple {
    background: #cabdff;
}

.color-background.bg-accent-light-orange {
    background: #ffbc99;
}

.color-background.bg-info-dark {
    background: var(--info-dark);
}

.color-background.bg-info-main {
    background: var(--info-main);
}

.color-background.bg-info-tin1 {
    background: var(--info-tint-1);
}

.color-background.bg-info-tin2 {
    background: var(--info-tint-2);
}

.color-background.bg-warn-dark {
    background: var(--warn-dark);
}

.color-background.bg-warn-main {
    background: var(--warn-main);
}

.color-background.bg-warn-tin1 {
    background: var(--warn-tint-1);
}

.color-background.bg-warn-tin2 {
    background: var(--warn-tint-2);
}

.color-name-bg {
    background: var(--ot-bg-primary);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.color-name-bg.color-primary-main {
    color: var(--blue-primary);
}

.color-name-bg span {
    color: var(--ot-primary-title);
}

.accent {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    position: relative;
}

.accent.accent-light-green {
    background: var(--accent-light-green);
}

.accent.accent-light-purple {
    background: var(--accent-light-purple);
}

.accent.accent-light-blue {
    background: var(--accent-light-blue);
}

.accent.accent-light-orange {
    background: var(--accent-light-orange);
}

.accent.accent-green {
    background: var(--accent-green);
}

.accent.accent-blue {
    background: var(--accent-blue);
}

.accent.accent-purple {
    background: var(--accent-purple);
}

.accent span {
    position: absolute;
    bottom: 10px;
    padding-left: 5px;
}

.typo {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    position: relative;
}

.typo.typo-black-dark {
    background: var(--typo-black-dark);
}

.typo.typo-black-main {
    background: var(--typo-black-main);
}

.typo.typo-black-bold {
    background: var(--typo-black-bold);
}

.typo.typo-black-light {
    background: var(--typo-black-light);
}

.typo.typo-black-lighter {
    background: var(--typo-black-lighter);
}

.typo span {
    position: absolute;
    bottom: 10px;
    padding-left: 5px;
}

.bgwhite {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    position: relative;
}

.bgwhite.bgwhite-dark {
    background: var(--bgwhite-dark);
}

.bgwhite.bgwhite-main {
    background: var(--bgwhite-main);
}

.bgwhite.bgwhite-tin1 {
    background: var(--bgwhite-tin1);
}

.bgwhite.bgwhite-tin2 {
    background: var(--bgwhite-tin2);
}

.bgwhite.typo-black-lighter {
    background: var(--typo-black-lighter);
}

.bgwhite span {
    position: absolute;
    bottom: 10px;
    padding-left: 5px;
}

/* Dropdown */
.dropdown-text-light {
    color: #6f767e;
}

.dropdown-text-dark {
    color: #1a1d1f;
}

.dropdown-text-red {
    color: #ff0022;
}

.dropdown-text-disable {
    color: #b2bec3;
}

.dropdown-text-blue {
    color: var(--ot-primary);
}

.dropdown-content {
    margin-top: 24px;
    margin-left: 32px;
}

.dropdown-section {
    padding: 80px;
    background: #fcfcfc;
    margin-top: 8px;
}

.dropdown-section h1 {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #120d26;
}

.dropdown-section p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4b4b4b;
}

.button-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #120d26;
}

.dropdown-with-down-arrow,
.dropdown2-with-down-arrow {
    margin-top: 12px;
    background-color: #fcfcfc;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    letter-spacing: 0.02em;
    color: #1a1d1f;
    border: 2px solid #f0eeee;
    border-radius: 5px;
}

.dropdown-with-down-arrow i,
.dropdown2-with-down-arrow i {
    margin-left: 12px;
    font-weight: bold;
}

.dropdown-with-down-arrow:hover,
.dropdown2-with-down-arrow:hover {
    border: 2px solid var(--ot-primary);
    color: var(--ot-primary);
}

.dropdown-with-down-arrow:hover i,
.dropdown2-with-down-arrow:hover i {
    color: var(--ot-primary);
}

.dropdown-with-down-arrow:focus,
.dropdown2-with-down-arrow:focus {
    border: 2px solid #4d5ee5;
    color: #066ecf;
}

.dropdown-with-down-arrow:focus i,
.dropdown2-with-down-arrow:focus i {
    color: #066ecf;
}

.dropdwon-btn-section {
    margin-top: 40px;
}

.dropdown-with-dots {
    margin-top: 12px;
}

button {
    border: none;
    outline: none;
}

#dropdown {
    background-color: #fcfcfc;
    border: 2px solid #f0eeee;
    border-radius: 5px 0px 0px 5px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    letter-spacing: 0.02em;
    color: #1a1d1f;
}

#dropdown:hover {
    border: 2px solid var(--ot-primary);
    color: var(--ot-primary);
}

#dropdown:focus {
    border: 2px solid #4d5ee5;
    color: #066ecf;
}

#three-dots {
    background-color: #fcfcfc;
    border: 2px solid #f0eeee;
    border-radius: 0px 5px 5px 0px;
    padding: 8px;
    letter-spacing: 0.02em;
    color: #1a1d1f;
}

#three-dots:hover {
    border: 2px solid var(--ot-primary);
    color: var(--ot-primary);
}

#three-dots:focus {
    border: 2px solid #4d5ee5;
    color: #066ecf;
}

.dropdown-items,
.second-item,
.third-item {
    position: relative;
    width: 191px;
    background: #ffffff;
    border: 1px solid #f0eeee;
    border-radius: 7px;
}

.dropdown-items ul,
.second-item ul,
.third-item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 16px;
    padding-right: 0px;
    gap: 16px;
}

.dropdown-items ul .text-secondary>i,
.second-item ul .text-secondary>i,
.third-item ul .text-secondary>i {
    padding-right: 16px;
}

.dropdown-items ul li,
.second-item ul li,
.third-item ul li {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    padding-right: 24px;
}

.dropdown-items ul .dropdown-text-dark>i,
.second-item ul .dropdown-text-dark>i,
.third-item ul .dropdown-text-dark>i {
    padding-left: 16px;
}

.second-item {
    display: block;
    width: 180px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 100%;
    margin-top: -40px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

.third-item {
    display: none;
    width: 180px;
    position: absolute;
    left: 112%;
    margin-top: -66px;
}

ul li.dropdown-text-dark:hover .second-item {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    margin-left: 10px;
}

.dropdown-search-checkbox {
    margin-top: 12px;
    background-color: #fcfcfc;
    border: 2px solid #f0eeee;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    color: var(--ot-primary);
}

.search-container {
    margin-top: 12px;
    width: 272px;
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
}

.search-input-checkbox input {
    width: 20px !important;
    height: 20px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.search-input-checkbox label {
    color: #6f767e;
    margin-left: 12px;
}

.search-input-checkbox ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.search-input {
    position: relative;
    text-align: center;
    padding: 15px 16px 15px 16px;
    border-bottom: 2px solid #f0eeee;
}

.search-input input {
    padding: 12px;
    width: 100%;
    border: 2px solid #f0eeee;
    border-radius: 50px;
    background: #fafafa;
    outline: none;
}

.search-input::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input i {
    position: absolute;
    top: 29px;
    right: 27px;
    padding: 5px;
    background-color: #fafafa;
    color: #6f767e;
}

.search-items {
    padding: 17px 25px;
}

.search-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.search-items ul li {
    color: #6f767e;
}

.search-input ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 8px 16px;
    gap: 16px;
}

.search-input ul li {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #6f767e;
}

.search-input ul li input {
    width: auto;
}

.search-input ul li::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-input ul li::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.search-container .btn-items {
    padding: 5px 17px 25px;
    text-align: end;
}

.search-container .btn-items .btn {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.search-container .btn-items .btn.clear {
    color: #6f767e;
}

.input-default input,
.input-date input {
    padding: 16px;
    width: 336px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
    outline: none;
}

.input-default::-webkit-input-placeholder,
.input-date::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default::-moz-placeholder,
.input-date::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default:-ms-input-placeholder,
.input-date:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default::-ms-input-placeholder,
.input-date::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-default::placeholder,
.input-date::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus {
    width: 360px;
}

.input-field-focus input {
    width: 100%;
    height: 48px;
    padding: 16px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
    outline: none;
}

.input-field-focus input:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 2px solid #0010f7;
    outline: none;
}

.input-field-focus::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-field-focus::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon {
    position: relative;
    margin-top: 16px;
    width: 336px;
    height: 48px;
}

.input-with-icon input {
    width: 336px;
    height: 48px;
    padding: 16px 45px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-with-icon input:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
    border: 2px solid #0010f7;
    outline: none;
}

.input-with-icon::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-with-icon i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-with-icon i.fa-user-o {
    left: 20px;
}

.input-with-icon i.fa-search {
    right: 20px;
}

.input-pre-post {
    position: relative;
    margin-top: 16px;
    width: 296px;
    height: 48px;
}

.input-pre-post input {
    padding: 16px 45px;
    width: 296px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-pre-post::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-pre-post i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-pre-post i.fa-user-o {
    left: 20px;
}

.input-pre-post i.fa-search {
    right: 60px;
}

.input-pre-post img {
    position: absolute;
    top: 2px;
    right: 1px;
    padding: 15px;
    width: 47px;
    background-color: #f7f7f7;
    border-left: 2px solid #f0eeee;
    border-radius: 0px 5px 5px 0px;
}

.input-https-post {
    position: relative;
    margin-top: 16px;
    width: 296px;
    height: 48px;
}

.input-https-post input {
    padding: 16px 43px 16px 110px;
    width: 296px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-https-post::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-https-post i.fa-user-o {
    left: 88px;
}

.input-https-post img {
    position: absolute;
    top: 2px;
    right: 1px;
    padding: 15px;
    width: 47px;
    background-color: #f7f7f7;
    border-left: 2px solid #f0eeee;
    border-radius: 0px 5px 5px 0px;
}

.input-https-post .https {
    position: absolute;
    color: #1a1d1f;
    top: 2px;
    left: 1.5px;
    background-color: #f7f7f7;
    padding: 12px;
    border-right: 2px solid #f0eeee;
    border-radius: 5px 0px 0px 5px;
}

.input-https-post2 {
    position: relative;
    margin-top: 16px;
    width: 296px;
    height: 48px;
}

.input-https-post2 input {
    padding: 16px 43px 16px 86px;
    width: 296px;
    height: 48px;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.input-https-post2::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.input-https-post2 i {
    position: absolute;
    top: 16px;
    color: #6f767e;
}

.input-https-post2 i.fa-user-o {
    left: 88px;
}

.input-https-post2 i.fa-search {
    right: 20px;
}

.input-https-post2 .https {
    position: absolute;
    color: #1a1d1f;
    top: 2px;
    left: 1.5px;
    background-color: #f7f7f7;
    padding: 12px;
    border-right: 2px solid #f0eeee;
    border-radius: 5px 0px 0px 5px;
}

textarea::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

textarea::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.text-area {
    width: 280px;
    height: 79px;
}

.text-area .text-count {
    font-family: var(--poppins);
    font-size: 10px;
    font-weight: 500;
    text-align: end;
    color: #b2bec3;
}

.Input-search-tab {
    position: relative;
    margin-top: 16px;
    width: 273px;
    height: 48px;
}

.Input-search-tab input {
    padding: 16px 43px 16px 16px;
    width: 100%;
    height: 100%;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    outline: none;
}

.Input-search-tab::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.Input-search-tab i {
    position: absolute;
    top: 0;
    color: #6f767e;
    border-left: 2px solid #f0eeee;
    padding: 16px;
}

.Input-search-tab i.fa-search {
    right: 0px;
}

.Input-search-tab .search {
    position: absolute;
    color: #ffffff;
    top: 0px;
    right: 0px;
    background-color: var(--ot-primary);
    padding: 13px;
    border-radius: 0px 5px 5px 0px;
}

.Input-search-tab i.fa-microphone {
    right: 70px;
    color: var(--ot-primary);
    border: none;
}

.Input-search-tab.search-color>input {
    width: 289px;
}

.Input-search-tab.search-color>i {
    right: -15px;
    color: #fafafa;
    background-color: var(--ot-primary);
    border-radius: 0px 5px 5px 0px;
}

.Input-search-tab .search-tab1 {
    width: 237px;
}

.Input-search-tab.microphone>input {
    padding: 16px 110px 16px 16px;
}

.input-date {
    margin-top: 16px;
}

.input-date input {
    width: 272px;
}

.Range-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 272px;
    height: 48px;
    -ms-flex-direction: row;
    flex-direction: row;
    border: 2px solid #f0eeee;
    border-radius: 5px;
    margin-top: 16px;
    padding: 10px 16px;
    gap: 5px;
}

.Range-date input {
    border: none;
    outline: none;
}

.time-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 386px;
    gap: 5px;
    margin-top: 16px;
}

.time-field .input-time {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 107px;
    height: 50px;
}

.time-field .input-time select {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #1a1d1f;
    border: none;
    outline: none;
    padding: 11px 16px;
}

.time-field .select-time input {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 272px;
    height: 48px;
    outline: none;
    padding: 16px;
}

.input-group-start-end-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}

.input-group-start-end-time .input-start-end-time {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 169px;
    height: 44px;
    padding: 12px 16px;
    color: #6f767e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.input-group-start-end-time .input-start-end-time span {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

option:hover {
    color: var(--ot-primary);
}

.input-time-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
}

.input-time-select .input-start-end-time-select {
    border: 2px solid #f0eeee;
    border-radius: 5px;
    width: 178px;
    height: 60px;
    padding: 12px 16px;
    color: #6f767e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.input-time-select .input-start-end-time-select p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #0010f7;
}

.input-time-select .input-start-end-time-select h6 {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #1a1d1f;
}

/* Badges */
.badge-success,
.badge-danger,
.badge-light-danger,
.badge-warning,
.badge-light-warning,
.badge-primary,
.badge-light-primary,
.badge-light-success {
    padding: 4px 10px;
    background: var(--ot-bg-badge-success);
    border-radius: 5px;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    color: var(--ot-text-badge-success);
}

.badge-success.ot-badge-circle,
.ot-badge-circle.badge-danger,
.ot-badge-circle.badge-light-danger,
.ot-badge-circle.badge-warning,
.ot-badge-circle.badge-light-warning,
.ot-badge-circle.badge-primary,
.ot-badge-circle.badge-light-primary,
.ot-badge-circle.badge-light-success {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.badge-danger,
.badge-light-danger {
    background: var(--ot-bg-badge-danger);
    color: var(--ot-text-badge-danger);
}

.badge-warning,
.badge-light-warning {
    background: var(--ot-bg-badge-warning);
    color: var(--ot-text-badge-warning);
}

.badge-primary,
.badge-light-primary {
    background: var(--ot-bg-badge-primary);
    color: var(--ot-text-badge-primary);
}

.badge-light-success {
    background: var(--ot-bg-badge-light-success);
    color: var(--ot-text-badge-light-success);
}

.badge-light-danger {
    background: var(--ot-bg-badge-light-danger);
    color: var(--ot-text-badge-light-danger);
}

.badge-light-warning {
    background: var(--ot-bg-badge-light-warning);
    color: var(--ot-text-badge-light-warning);
}

.badge-light-primary {
    background: var(--ot-bg-badge-light-primary);
    color: var(--ot-text-badge-light-primary);
}

/* Global Components */
/* Reborting Default Bootstrap carousel */
.ot-carousel .carousel-control-prev-icon {
    background-image: url(../../../assets/images/icons/slider-left-arrow.svg);
}

.ot-carousel .carousel-control-next-icon {
    background-image: url(../../../assets/images/icons/slider-right-arrow.svg);
}

.ot-carousel .carousel-indicators button {
    background-color: var(--ot-primary);
}

/* custom tooltip */
.custom-tooltip {
    --bs-tooltip-bg: var(--ot-primary);
}

/* profile */
.profile-content .profile-menu-mobile {
    background-color: var(--ot-bg-profile-mobile-menu);
}

@media (min-width: 992px) {
    .profile-content .profile-menu-mobile {
        display: none;
    }
}

.profile-content .profile-menu-mobile .btn-menu-mobile {
    background-color: var(--ot-bg-profile-mobile-menu);
    padding: 16px 24px;
    width: 100%;
    display: block;
    text-align: left;
}

.profile-content .profile-menu-mobile .btn-menu-mobile .icon {
    font-size: 18px;
    color: var(--ot-primary-title);
}

.profile-content .profile-menu-mobile .offcanvas {
    width: 100%;
    max-width: 300px;
    background-color: var(--ot-bg-profile-mobile-menu);
}

.profile-content .profile-menu-mobile .offcanvas .offcanvas-body {
    padding: 0;
}

.profile-content .profile-menu-mobile .offcanvas .offcanvas-header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.profile-content .profile-menu-mobile .offcanvas .offcanvas-header .btn-close {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.profile-content .profile-menu-mobile .offcanvas .offcanvas-header .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.profile-content .profile-menu-mobile .offcanvas .offcanvas-header .icon {
    font-size: 18px;
    color: var(--ot-primary-title);
}

.profile-content .profile-menu-mobile .profile-menu {
    background-color: var(--ot-bg-profile-mobile-menu);
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    border-right: 1px solid #eaeaea;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    min-height: 900px;
}

.profile-content .profile-menu-mobile .profile-menu-head {
    padding: 40px 28px 0px 40px;
}

.profile-content .profile-menu-mobile .profile-menu-head .image-box {
    width: 60px;
    height: 60px;
}

.profile-content .profile-menu-mobile .profile-menu-head .body {
    margin-left: 12px;
}

.profile-content .profile-menu-mobile .profile-menu-head .body .title {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    color: #1a1d1f;
    margin-bottom: 8px;
}

.profile-content .profile-menu-mobile .profile-menu-head .body .paragraph {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6f767e;
}

.profile-content .profile-menu-mobile .profile-menu-body .nav-item {
    margin-bottom: 35px;
    border-right: 2px solid transparent;
    border-radius: 2px 0px 0px 2px;
}

.profile-content .profile-menu-mobile .profile-menu-body .nav-item:last-child {
    margin-bottom: 0;
}

.profile-content .profile-menu-mobile .profile-menu-body .nav-link {
    padding: 0px 0px 0px 40px;
    border-right: 2px solid transparent;
    border-radius: 2px 0px 0px 2px;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    color: #6f767e;
}

.profile-content .profile-menu-mobile .profile-menu-body .nav-link.active {
    color: var(--ot-primary);
    border-right: 2px solid var(--ot-primary);
}

.profile-content .profile-menu-mobile .profile-menu-body .nav-link:hover {
    color: var(--ot-primary);
    border-right: 2px solid var(--ot-primary);
}

.profile-content .profile-menu {
    background-color: var(--ot-bg-profile-menu);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    border-right: 1px solid var(--ot-primary-border);
    min-height: 900px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
}

@media (max-width: 1399.98px) {
    .profile-content .profile-menu {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
        flex: 0 0 240px;
    }
}

@media (max-width: 991.98px) {
    .profile-content .profile-menu {
        display: none;
    }
}

.profile-content .profile-menu-head {
    padding: 60px 28px 0px 60px;
}

@media (max-width: 1399.98px) {
    .profile-content .profile-menu-head {
        padding: 60px 16px 0px 16px;
    }
}

.profile-content .profile-menu-head .image-box {
    width: 60px;
    height: 60px;
}

.profile-content .profile-menu-head .body {
    margin-left: 12px;
}

@media (max-width: 1399.98px) {
    .profile-content .profile-menu-head .body {
        margin-left: 4px;
    }
}

.profile-content .profile-menu-head .body .title {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    color: var(--ot-primary-title);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.profile-content .profile-menu-head .body .paragraph {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6f767e;
}

.profile-content .profile-menu-body .nav-item {
    margin-bottom: 35px;
    border-right: 2px solid transparent;
    border-radius: 2px 0px 0px 2px;
}

.profile-content .profile-menu-body .nav-item:last-child {
    margin-bottom: 0;
}

.profile-content .profile-menu-body .nav-link {
    padding: 0px 0px 0px 60px;
    border-right: 2px solid transparent;
    border-radius: 2px 0px 0px 2px;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    color: #6f767e;
    border-right: 0 !important;
    position: relative;
    text-transform: capitalize;
}

@media (max-width: 1399.98px) {
    .profile-content .profile-menu-body .nav-link {
        padding: 0px 0px 0px 16px;
    }
}

.profile-content .profile-menu-body .nav-link.active {
    color: var(--ot-primary);
    border-right: 2px solid var(--ot-primary);
}

.profile-content .profile-menu-body .nav-link:hover {
    color: var(--ot-primary);
    border-right: 2px solid var(--ot-primary);
}

.profile-content .profile-body {
    width: 0%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: var(--ot-bg-profile-body);
    padding: 80px 250px 80px 80px;
}

@media (max-width: 991.98px) {
    .profile-content .profile-body {
        width: unset;
    }
}

@media (max-width: 1399.98px) {
    .profile-content .profile-body {
        padding: 80px 24px 80px 24px;
    }
}

.profile-content .profile-body .btn-back {
    text-decoration: none;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #ffffff;
    padding: 11px 16px;
    background: var(--ot-primary);
    border-radius: 5px;
}

.profile-content .profile-body .title {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    color: var(--ot-primary-title);
    margin-bottom: 40px;
    text-transform: capitalize;
}

.profile-content .profile-body .nav {
    width: 100%;
    border-bottom: 1px solid var(--ot-primary-border);
}

.profile-content .profile-body .nav-item {
    margin-right: 40px;
}

@media (max-width: 1399.98px) {
    .profile-content .profile-body .nav-item {
        margin-right: 12px;
    }
}

.profile-content .profile-body .nav-item:last-child {
    margin-right: 0;
}

.profile-content .profile-body .nav-link {
    padding: 16px 0;
    border-radius: 0;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #6f767e;
    border-bottom: 1px solid transparent;
}

.profile-content .profile-body .nav-link.active {
    background-color: transparent;
    color: var(--ot-primary);
    border-bottom: 1px solid var(--ot-primary);
}

.profile-content .profile-body .nav-link:hover {
    background-color: transparent;
    color: var(--ot-primary);
    border-bottom: 1px solid var(--ot-primary);
}

.profile-content .profile-body-form .form-item {
    padding: 32px 0px;
    border-bottom: 1px solid var(--ot-primary-border);
}

.profile-content .profile-body-form .image-box {
    width: 100px;
    height: 100px;
    position: relative;
}

.profile-content .profile-body-form .image-box .icon {
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    left: unset;
    width: 32px;
    height: 32px;
    font-size: 12px;
    line-height: 32px;
    border: none;
    border-radius: 200px;
    background-color: #ffffff;
    color: var(--ot-primary);
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
}

.profile-content .profile-body-form .image-box #input-button {
    position: abosulte;
    width: 1px;
    height: 1px;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
}

.profile-content .profile-body-form .title {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--ot-primary-title);
    margin-bottom: 8px;
}

.profile-content .profile-body-form .title .icon-required {
    font-size: 8px;
    color: #ff6a54;
}

.profile-content .profile-body-form .paragraph {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6f767e;
    margin-bottom: 0;
}

/* .card-header {
    background-color: unset !important;
} */

.profile-content .profile-body-form .btn-edit {
    background-color: transparent;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box {
    margin-top: 12px;
}

.profile-content .profile-body-form .form-box .form-control,
.profile-content .profile-body-form .form-box .form-select {
    max-width: 336px;
    max-height: 48px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.profile-content .profile-body-form .form-box .form-control::-webkit-input-placeholder,
.profile-content .profile-body-form .form-box .form-select::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box .form-control::-moz-placeholder,
.profile-content .profile-body-form .form-box .form-select::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box .form-control:-ms-input-placeholder,
.profile-content .profile-body-form .form-box .form-select:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box .form-control::-ms-input-placeholder,
.profile-content .profile-body-form .form-box .form-select::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box .form-control::placeholder,
.profile-content .profile-body-form .form-box .form-select::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box .form-control:focus,
.profile-content .profile-body-form .form-box .form-select:focus {
    border-color: #eaeaea;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.profile-content .profile-body-form .form-box .unset-size {
    max-width: unset;
    max-height: unset;
}

.profile-content .profile-body-form .form-box .btn-update {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #ffffff;
    padding: 11px 20px;
    background: var(--ot-primary);
    border-radius: 5px;
    margin-top: 12px;
}

.profile-content .profile-body-form .form-box .daterange {
    cursor: pointer;
    max-width: 336px;
    max-height: 48px;
    border: 1px solid #eaeaea;
}

.profile-content .profile-body-form .form-box .file-box {
    padding: 28px;
    background: #ffffff;
    border: 1px dashed #eaeaea;
    border-radius: 10px;
}

.profile-content .profile-body-form .form-box .file-box .icon {
    font-size: 28px;
    color: var(--ot-primary);
}

.profile-content .profile-body-form .form-box .file-box .file-upload-text {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #000000;
}

.profile-content .profile-body-form .form-box .file-box .file-info-text {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #6f767e;
}

.profile-content .profile-body-form .form-box .file-box #open-file-uploader {
    color: var(--ot-primary);
}

.profile-content .profile-body-form .form-box .file-box #input-button {
    position: abosulte;
    width: 1px;
    height: 1px;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
}

.profile-content .profile-body-form .form-box .file-show-box {
    margin-top: 16px;
}

.profile-content .profile-body-form .form-box .file-show-box .img-box {
    width: 64px;
    height: 64px;
}

.profile-content .profile-body-form .form-box .file-show-box .img-box img {
    width: 100%;
    height: 100%;
}

.profile-content .profile-body.padding-reduce {
    padding: 80px 40px;
}

@media (max-width: 1399.98px) {
    .profile-content .profile-body.padding-reduce {
        padding: 80px 24px;
    }
}

/* Email Template */
.email-template {
    font-family: var(--poppins);
    text-align: center;
    padding: 56px 60px;
    background: var(--white);
    border-radius: 5px;
    max-width: 600px;
}

.email-template .template-heading h1 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    margin-top: 20px;
}

.email-template .template-heading p {
    font-family: var(--poppins);
    font-size: 16px;
    line-height: 24px;
    color: #6f767e;
    margin-top: 20px;
}

.email-template .template-heading .color-black {
    color: #1a1d1f;
}

.email-template .template-body {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6f767e;
    padding: 14px;
}

.email-template .template-body .content-part {
    text-align: left;
    margin-bottom: 28px;
}

.email-template .template-body .content-part p a {
    font-family: var(--poppins);
    color: var(--ot-primary);
}

.email-template .template-body .content-part h5 {
    font-family: var(--poppins);
    color: #1a1d1f;
    margin-top: 28px;
    padding: 0;
}

.email-template .template-body .content-details p {
    font-family: var(--poppins);
    padding: 0 14px;
    margin-bottom: 28px;
}

.email-template .template-body .content-details p .link {
    color: var(--ot-primary);
}

.email-template .template-body .ot-primary-text {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--ot-primary);
    margin-top: 26px;
}

.email-template .template-body h4 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 16px;
    color: #29d697;
}

.email-template .template-body h5 {
    font-family: var(--poppins);
    padding: 0 14px;
}

.email-template .template-button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 14px;
    gap: 10px;
}

.email-template .template-button-group .template-btn {
    padding: 9px 2px;
    border-radius: 7px;
    background: var(--ot-primary);
}

.email-template .template-button-group .template-btn span {
    font-family: var(--poppins);
    padding: 10px 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--ot-primary);
}

.email-template .template-button-group .template-btn span:hover {
    outline: none;
    border: none;
    color: var(--ot-primary);
    border-radius: 5px;
    background: var(--white);
}

.email-template .template-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.email-template .template-btn-container .template-btn {
    padding: 9px 2px;
    border-radius: 7px;
    background: var(--ot-primary);
}

.email-template .template-btn-container .template-btn span {
    font-family: var(--poppins);
    padding: 10px 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--ot-primary);
}

.email-template .template-btn-container .template-btn span:hover {
    outline: none;
    border: none;
    color: var(--ot-primary);
    border-radius: 5px;
    background: var(--white);
}

.email-template .template-footer {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #6f767e;
    border-top: 1px solid #dfe6e9;
    margin-top: 26px;
}

.email-template .template-footer p>a {
    color: var(--ot-primary);
}

.email-template .template-footer .social-media-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 26px;
    gap: 8px;
}

.email-template .template-footer .social-media-button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8.5px;
    border-radius: 50%;
    background: var(--ot-primary);
}

.email-template .template-footer .social-media-button a:hover {
    background: var(--ot-secondary);
}

.email-template .template-footer .template-footer-image {
    margin-top: 28px;
    margin-bottom: 8px;
}

@media (max-width: 576px) {
    .email-template {
        padding: 26px 30px;
    }

    .email-template .template-heading h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    .email-template .template-heading p {
        font-size: 16px;
        padding: 0 8px;
    }

    .email-template .template-body {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #6f767e;
    }

    .email-template .template-body p {
        padding: 0;
    }

    .email-template .template-body .template-content-image img {
        width: 100%;
        height: 100%;
    }

    .email-template .template-body h5 {
        padding: 0;
    }

    .email-template .template-button-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
    }

    .email-template .template-button-group button {
        width: 100%;
    }

    .email-template .template-footer {
        font-size: 7px;
    }
}

/* Notification */
.ot-notification-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.notification-container {
    width: calc(100% - 340px);
}

.notification-container .notification-col .card {
    padding: 24px;
    background: var(--ot-bg-secondary);
    border-radius: 8px;
    border: none;
}

.notification-container .notification-col .card .card-head .card-title {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .card-head .item-selector .select-items {
    width: 98px;
    height: 34px;
    border: 2px solid #efefef;
    border-radius: 5px;
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
    outline: none;
}

.notification-container .notification-col .card .card-head .item-selector .select-items:hover {
    border: 2px solid var(--ot-primary);
}

.notification-container .notification-col .card .card-head .item-selector .action .btn-action {
    padding: 8px 10px;
    background: var(--ot-bg-secondary);
    border: 2px solid var(--ot-bg-secondary);
    border-radius: 50px;
}

.notification-container .notification-col .card .card-head .item-selector .action .btn-action .fa {
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .card-head .item-selector .action .btn-action:hover {
    border: 2px solid var(--ot-primary);
}

.notification-container .notification-col .card .notification-list {
    padding: 24px 16px;
}

.notification-container .notification-col .card .notification-list .notification-img {
    position: relative;
}

.notification-container .notification-col .card .notification-list .notification-img img {
    width: 100%;
}

.notification-container .notification-col .card .notification-list .notification-img .item-icon-badge {
    position: absolute;
    top: 41px;
    right: 0;
    padding: 5px;
    border-radius: 50%;
    background: var(--ot-primary);
    color: var(--ot-bg-secondary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.notification-container .notification-col .card .notification-list .notification-img .item-icon-badge .fa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
}

.notification-container .notification-col .card .notification-list .notification-details .notification-line .notification-subtitle {
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .notification-line .notification-login {
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .notification-line .notification-time {
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .notification-comment {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .notification-content {
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .notification-content strong {
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .notification-control .notification-action {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    background: none;
    margin-top: 16px;
    color: var(--ot-primary-title);
}

.notification-container .notification-col .card .notification-list .notification-details .liked-action {
    color: var(--ot-primary) !important;
}

.notification-container .notification-col .card .notification-list .notification-details .notification-line .notification-time .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    min-width: 10px;
    min-height: 10px;
    background-color: var(--ot-primary);
}

.notification-container .notification-col .card .notification-list .notification-details .answer .user-answer img {
    margin-top: 16px;
    margin-right: 16px;
}

.notification-container .notification-col .card .notification-list .notification-details .answer .user-answer textarea {
    width: 75%;
    color: var(--ot-primary-title);
    background: var(--ot-bg-secondary);
}

.notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer {
    margin-left: 66px;
}

.notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn.btn-reply {
    font-family: var(--poppins);
    font-weight: 600;
    line-height: 18px;
    padding: 9px 18px;
    background: var(--ot-primary);
    color: var(--white);
}

.notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn.btn-replyhover {
    opacity: var(--ot-bg-secondary-opacity);
}

.notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn.btn-cancel {
    font-family: var(--poppins);
    font-weight: 600;
    line-height: 18px;
    padding: 9px 14px;
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
    border: 2px solid #efefef;
}

.notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn.btn-cancelhover {
    opacity: var(--ot-bg-secondary-opacity);
}

.notification-container .notification-col .card .notification-list:hover {
    border-radius: 5px;
    background: var(--ot-bg-primary);
}

.notification-container .notification-col .card .load-more {
    border: 2px solid #f4f4f4;
    border-radius: 5px;
    padding: 8px 14px;
}

.notification-container .notification-col .card .load-more img {
    width: 14px;
    height: 14px;
}

.notification-container .notification-col .card .load-more button {
    color: var(--ot-primary-title);
    background: none;
}

.notification-container .notification-col .card .load-more:hover {
    border: 2px solid var(--ot-primary);
}

.filter-container {
    width: 340px;
}

.filter-container .filter {
    position: fixed;
    padding: 24px;
    background: var(--ot-bg-secondary);
    border-radius: 8px;
    border: none;
}

.filter-container .filter .title-filter {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.filter-container .filter .btn-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter-container .filter .input-checkbox .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
}

.filter-container .filter .input-checkbox .form-check label {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: var(--ot-primary-title);
    margin-left: 5px;
}

.filter-container .filter .input-user .form-check .form-check-label {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: var(--ot-primary-title);
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .notification-container {
        width: 100%;
    }

    .notification-container .notification-col .card .notification-list {
        padding: 24px 10px;
    }

    .filter-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .notification-container {
        width: 100%;
    }

    .notification-container .notification-col .card {
        padding: 10px;
    }

    .notification-container .notification-col .card .card-head .card-title {
        font-size: 16px;
    }

    .notification-container .notification-col .card .notification-list .notification-details .notification-control .notification-action {
        font-size: 10px;
    }

    .notification-container .notification-col .card .notification-list .notification-img .item-icon-badge {
        top: 41px;
        padding: 3px;
    }

    .notification-container .notification-col .card .notification-list .notification-img .item-icon-badge .fa {
        font-size: 10px;
        color: #ffffff;
    }
}

@media (max-width: 576px) {
    .notification-container {
        width: 100%;
    }

    .notification-container .notification-col .card {
        padding: 10px;
    }

    .notification-container .notification-col .card .notification-list .notification-details {
        font-size: 11px;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer img {
        width: 30px;
        margin-right: 5px;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer textarea::-webkit-input-placeholder {
        font-size: 10px !important;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer textarea::-moz-placeholder {
        font-size: 10px !important;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer textarea:-ms-input-placeholder {
        font-size: 10px !important;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer textarea::-ms-input-placeholder {
        font-size: 10px !important;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer textarea::placeholder {
        font-size: 10px !important;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        margin-left: 0px;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn {
        font-size: 10px;
        height: 30px;
    }

    .notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn.btn-cancel,
    .notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn.btn-reply {
        line-height: 0px;
        padding: 0 10px;
    }

    .notification-container .notification-col .card .notification-list .notification-img img {
        width: 45px;
    }

    .notification-container .notification-col .card .notification-list .notification-img .item-icon-badge {
        top: 34px;
        padding: 3px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/* Form Elements */
/* Form Elements */
.input-check-radio .form-check .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--ot-border-table-checkbox);
    background-color: var(--ot-bg-table-checkbox);
    margin-top: 0;
}

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

.input-check-radio .form-check .form-check-input:checked {
    background: url("../images/basic-datatable/check/ok.svg"), var(--ot-primary);
    background-repeat: no-repeat;
    background-position: center;
    border: transparent;
}

.bootstrap-tagsinput {
    background: var(--ot-bg-secondary);
}

.bootstrap-tagsinput span.badge.input-bg-primary {
    background: var(--ot-primary);
}

.bootstrap-tagsinput .badge [data-role="remove"]:after {
    display: inline-block;
}

/* Pricing table */
/* FAQ */
.faq .faq-card {
    background: var(--ot-bg-tertiary);
    margin-bottom: 10px;
}

.faq .faq-card .card {
    margin-bottom: 10px;
    border: 1px solid #eeeeee;
    border-radius: 2px;
}

.faq .faq-card .card .card svg {
    position: absolute;
    left: 25px;
}

.faq .faq-card .card .card-header {
    background: var(--ot-bg-secondary);
}

.faq .faq-card .card .card-header h5 button {
    width: 100%;
    background: var(--ot-bg-secondary);
    padding: 10px 20px;
    text-align: left;
    font-family: var(--poppins);
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    color: var(--ot-primary-title);
}

.faq .faq-card .card .card-body {
    background: var(--ot-bg-secondary);
    border-top: 1px solid #eeeeee;
}

.faq .faq-card .card .card-body p {
    font-family: var(--poppins);
    font-size: 14px;
    padding: 10px 20px;
    color: var(--ot-primary-title);
}

.faq .faq-card .card:hover {
    border: 1px solid blue;
}

.faq .faq-card .faq-title h6 {
    font-size: 20px;
    margin: 30px 0px 30px 0px;
}

.typography-content .highlight,
.typography-content .bd-example {
    color: var(--ot-secondary-title);
}

.typography-content .vertical-alignment .row {
    min-height: 50px;
    background-color: rgba(15, 106, 255, 0.1);
    margin-bottom: 6px;
}

.typography-content .vertical-alignment .col {
    background-color: rgba(15, 106, 255, 0.1);
    border: 1px solid rgba(15, 106, 255, 0.25);
}

/* FAQ classic*/
.faq-card .ot-accordion-cust .accordion-item {
    margin-bottom: 11px;
    border: 1px solid var(--ot-bg-badge-primary);
    border-radius: 2px;
}

.faq-card .ot-accordion-cust .accordion-item .accordion-header {
    background: var(--ot-primary);
}

.faq-card .ot-accordion-cust .accordion-item .accordion-header .accordion-button {
    background: var(--ot-primary);
    color: #ffffff;
}

.faq-card .ot-accordion-cust .accordion-item .accordion-header .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-card .ot-accordion-cust .accordion-item .accordion-body {
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.faq-card .ot-accordion-border .accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--ot-bg-badge-primary);
}

.faq-card .ot-accordion-border .accordion-item .accordion-header .accordion-button {
    background: var(--ot-bg-secondary);
    color: var(--ot-text-badge-light-primary);
}

.faq-card .ot-accordion-border .accordion-item .accordion-header .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-card .ot-accordion-border .accordion-item .accordion-body {
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.faq-card .accordion-no-border .accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ffffff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1),
        0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq-card .accordion-no-border .accordion-item .accordion-header {
    background: var(--ot-bg-tertiary);
}

.faq-card .accordion-no-border .accordion-item .accordion-header .accordion-button {
    background: var(--ot-bg-secondary);
    color: var(--ot-secondary-title);
}

.faq-card .accordion-no-border .accordion-item .accordion-header .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-card .accordion-no-border .accordion-item .accordion-body {
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

/* Icon page*/
.icon-container .row .col:hover .theme-icons {
    background: var(--ot-primary);
    color: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}

.theme-icons {
    background-color: var(--ot-bg-secondary);
    color: var(--ot-primary);
}

.font-22 {
    font-size: 22px;
}

.ecommerce-components.product-list .product-image {
    width: 80px;
    max-height: 80px;
    background-color: var(--ot-bg-primary);
}

.ecommerce-components.product-list .product-image img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.ecommerce-components.product-grid .product-card img {
    max-height: 95px;
}

.ecommerce-components.order-details .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #c7c8cb;
    font-size: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.ecommerce-components.order-details .icon-box.customer {
    background-color: rgba(52, 96, 255, 0.15) !important;
}

.ecommerce-components.order-details .icon-box.order-info {
    background-color: rgba(18, 191, 35, 0.15) !important;
}

.ecommerce-components.order-details .icon-box.deliver-to {
    background-color: rgba(231, 46, 46, 0.15) !important;
}

/* Chat */
.chat-container .card {
    background: var(--ot-bg-tertiary);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 0;
    margin-bottom: 30px;
    border-radius: 0.55rem;
    position: relative;
    width: 100%;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.chat-container .chat-app .people-list {
    width: 280px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
    z-index: 7;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.chat-container .chat-app .people-list img {
    float: left;
    border-radius: 50%;
}

.chat-container .chat-app .people-list .about {
    float: left;
    padding-left: 8px;
}

.chat-container .chat-app .people-list .status {
    color: #999;
    font-size: 13px;
}

.chat-container .chat-app .people-list .chat-list li {
    padding: 10px 15px;
    list-style: none;
    border-radius: 3px;
}

.chat-container .chat-app .people-list .chat-list li:hover {
    background-color: var(--ot-bg-primary);
    cursor: pointer;
}

.chat-container .chat-app .people-list .chat-list li.active {
    background-color: var(--ot-bg-primary);
}

.chat-container .chat-app .people-list .chat-list li .name,
.chat-container .chat-app .people-list .chat-list li .user-info .user-details i,
.user-info .user-details .chat-container .chat-app .people-list .chat-list li i {
    font-size: 15px;
}

.chat-container .chat-app .people-list .chat-list img {
    width: 45px;
    border-radius: 50%;
}

.chat-container .chat-app .chat {
    border-left: 1px solid #eaeaea;
}

.chat-container .chat-app .chat .chat-header {
    padding: 15px 20px;
    border-bottom: 2px solid #f4f7f6;
}

.chat-container .chat-app .chat .chat-header img {
    float: left;
    border-radius: 40px;
    width: 40px;
}

.chat-container .chat-app .chat .chat-header .dropdown button {
    background-color: transparent;
    padding: 0;
    border: none;
    outline: none;
    font-size: 22px;
    color: var(--ot-primary-title);
}

.chat-container .chat-app .chat .chat-header .dropdown button:after {
    content: none;
}

.chat-container .chat-app .chat .chat-header .chat-about {
    float: left;
    padding-left: 10px;
}

.chat-container .chat-app .chat .chat-history {
    padding: 20px;
    border-bottom: 2px solid var(--white);
}

.chat-container .chat-app .chat .chat-history ul {
    padding: 0;
}

@media (max-width: 576px) {
    .chat-container .chat-app .chat .chat-history ul {
        max-height: 400px;
        overflow-y: scroll;
    }
}

.chat-container .chat-app .chat .chat-history ul li {
    list-style: none;
    margin-bottom: 30px;
}

.chat-container .chat-app .chat .chat-history ul li:last-child {
    margin-bottom: 0px;
}

.chat-container .chat-app .chat .chat-history .message-data {
    margin-bottom: 15px;
}

.chat-container .chat-app .chat .chat-history .message-data img {
    border-radius: 40px;
    width: 40px;
}

.chat-container .chat-app .chat .chat-history .message-data-time {
    color: #434651;
    padding-left: 6px;
}

.chat-container .chat-app .chat .chat-history .message {
    color: #444;
    padding: 18px 20px;
    line-height: 26px;
    font-size: 16px;
    border-radius: 7px;
    display: inline-block;
    position: relative;
}

.chat-container .chat-app .chat .chat-history .message:after {
    bottom: 100%;
    left: 7%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: var(--ot-bg-primary);
    border-width: 10px;
    margin-left: -10px;
}

.chat-container .chat-app .chat .chat-history .my-message {
    color: var(--ot-primary-title);
    background: var(--ot-bg-primary);
}

.chat-container .chat-app .chat .chat-history .my-message:after {
    bottom: 100%;
    left: 30px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: var(--ot-bg-primary);
    border-width: 10px;
    margin-left: -10px;
}

.chat-container .chat-app .chat .chat-history .other-message {
    background: var(--ot-bg-primary);
    color: var(--ot-primary-title);
    text-align: right;
}

.chat-container .chat-app .chat .chat-history .other-message:after {
    border-bottom-color: var(--ot-bg-primary);
    left: 93%;
}

.chat-container .chat .chat-message-container {
    padding: 20px;
    width: 100%;
}

.chat-container .chat .chat-message-container .chat-message {
    background-color: var(--ot-bg-primary) !important;
    border: 1px solid #f0eeee !important;
    outline: none !important;
    color: var(--ot-primary-title) !important;
    border-radius: 5px;
}

.chat-container .chat .chat-message-container .chat-message .message-input textarea {
    resize: none;
    background-color: transparent;
    border: 0;
    outline: none;
    margin-top: 0;
    color: var(--ot-primary-title);
}

.chat-container .chat .chat-message-container .chat-message .message-toolbar {
    padding: 0 10px 5px 10px;
}

.chat-container .chat .chat-message-container .chat-message .message-toolbar .toolbar-btns button {
    padding: 0;
    border: 0;
    outline: none;
    font-size: 22px;
    margin-right: 8px;
    color: var(--ot-primary-title);
}

.chat-container .chat .chat-message-container .chat-message .message-toolbar .toolbar-btns button:active,
.chat-container .chat .chat-message-container .chat-message .message-toolbar .toolbar-btns button:hover,
.chat-container .chat .chat-message-container .chat-message .message-toolbar .toolbar-btns button:focus {
    outline: none;
    border: 0;
    color: var(--ot-secondary-title);
}

.chat-container .online,
.chat-container .offline,
.chat-container .me {
    margin-right: 2px;
    font-size: 8px;
    vertical-align: middle;
}

.chat-container .online {
    color: #86c541;
}

.chat-container .offline {
    color: #e47297;
}

.chat-container .me {
    color: #1d8ecd;
}

.chat-container .float-right {
    float: right;
}

.chat-container .clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

@media only screen and (max-width: 767px) {
    .chat-container .chat-app .people-list {
        height: 465px;
        width: 100%;
        overflow-x: auto;
        background: var(--white);
        left: -400px;
        display: none;
    }

    .chat-container .chat-app .people-list.open {
        left: 0;
    }

    .chat-container .chat-app .chat {
        margin: 0;
    }

    .chat-container .chat-app .chat .chat-header {
        border-radius: 0.55rem 0.55rem 0 0;
    }

    .chat-container .chat-app .chat-history {
        height: 300px;
        overflow-x: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .chat-container .chat-app .chat-list {
        height: 650px;
        overflow-x: auto;
    }

    .chat-container .chat-app .chat-history {
        height: 600px;
        overflow-x: auto;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    .chat-container .chat-app .chat-list {
        height: 480px;
        overflow-x: auto;
    }

    .chat-container .chat-app .chat-history {
        height: calc(100vh - 350px);
        overflow-x: auto;
    }
}

/* Carousel */
/* slick carousel */
.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
    color: #0f0f0f;
}

.slick-slider .slick-slide {
    padding: 0 8px;
}

/* Timeline */
/* timeline start */
/*==================================
    TIMELINE
==================================*/
/*-- GENERAL STYLES
    ------------------------------*/
.timeline {
    line-height: 1.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
    padding-left: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .timeline-info span {
    color: var(--ot-primary-title);
}

/*----- TIMELINE INFO -----*/
.timeline-info {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 0.5em 0;
    text-transform: uppercase;
    white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
}

.timeline-marker:before {
    background: var(--ot-dot-timeline);
    border: 3px solid transparent;
    border-radius: 100%;
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    -webkit-transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
    content: "";
    width: 3px;
    background: #ccd5db;
    display: block;
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 6px;
}

.timeline-item:last-child .timeline-marker:after {
    content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
    background: transparent;
    border: 3px solid var(--ot-dot-timeline);
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
    padding-bottom: 40px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/*----- TIMELINE PERIOD -----*/
.period {
    padding: 0;
}

.period .timeline-info {
    display: none;
}

.period .timeline-marker:before {
    background: transparent;
    content: "";
    width: 15px;
    height: auto;
    border: none;
    border-radius: 0;
    top: 0;
    bottom: 30px;
    position: absolute;
    border-top: 3px solid #ccd5db;
    border-bottom: 3px solid #ccd5db;
}

.period .timeline-marker:after {
    content: "";
    height: 32px;
    top: auto;
}

.period .timeline-content {
    padding: 40px 0 70px;
}

.period .timeline-title {
    margin: 0;
}

/*----------------------------------------------
      Responsive styles
 ----------------------------------------------*/
@media (min-width: 768px) {

    .timeline-split .timeline,
    .timeline-centered .timeline {
        display: table;
    }

    .timeline-split .timeline-item,
    .timeline-centered .timeline-item {
        display: table-row;
        padding: 0;
    }

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info,
    .timeline-split .timeline-marker,
    .timeline-centered .timeline-marker,
    .timeline-split .timeline-content,
    .timeline-centered .timeline-content,
    .timeline-split .period .timeline-info,
    .timeline-centered .period .timeline-info {
        display: table-cell;
        vertical-align: top;
    }

    .timeline-split .timeline-marker,
    .timeline-centered .timeline-marker {
        position: relative;
    }

    .timeline-split .timeline-content,
    .timeline-centered .timeline-content {
        padding-left: 30px;
    }

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info {
        padding-right: 30px;
    }

    .timeline-split .period .timeline-title,
    .timeline-centered .period .timeline-title {
        position: relative;
        left: -45px;
    }
}

@media (min-width: 992px) {

    .timeline-centered,
    .timeline-centered .timeline-item,
    .timeline-centered .timeline-info,
    .timeline-centered .timeline-marker,
    .timeline-centered .timeline-content {
        display: block;
        margin: 0;
        padding: 0;
    }

    .timeline-centered .timeline-item {
        padding-bottom: 40px;
        overflow: hidden;
    }

    .timeline-centered .timeline-marker {
        position: absolute;
        left: 50%;
        margin-left: -7.5px;
    }

    .timeline-centered .timeline-info,
    .timeline-centered .timeline-content {
        width: 50%;
    }

    .timeline-centered>.timeline-item:nth-child(odd) .timeline-info {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered>.timeline-item:nth-child(odd) .timeline-content {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered>.timeline-item:nth-child(even) .timeline-info {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered>.timeline-item:nth-child(even) .timeline-content {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered>.timeline-item.period .timeline-content {
        float: none;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .timeline-centered .timeline-item.period {
        padding: 50px 0 90px;
    }

    .timeline-centered .period .timeline-marker:after {
        height: 30px;
        bottom: 0;
        top: auto;
    }

    .timeline-centered .period .timeline-title {
        left: auto;
    }
}

.marker-outline .timeline-marker:before {
    background: transparent;
    border-color: var(--ot-dot-timeline);
}

.marker-outline .timeline-item:hover .timeline-marker:before {
    background: var(--ot-dot-timeline);
}

.sparkboxes .box {
    padding-top: 10px;
    padding-bottom: 10px;
    text-shadow: 0 1px 1px 1px #666;
    -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    position: relative;
    border-radius: 5px;
}

.sparkboxes .box .details {
    position: absolute;
    color: var(--ot-primary-title);
    -webkit-transform: scale(0.7) translate(-22px, 20px);
    transform: scale(0.7) translate(-22px, 20px);
}

.sparkboxes strong {
    position: relative;
    z-index: 3;
    top: -8px;
    color: var(--ot-primary-title);
}

.sparkboxes .box1 {
    background-image: linear-gradient(135deg, #abdcff 10%, #0396ff 100%);
}

.sparkboxes .box2 {
    background-image: linear-gradient(135deg, #2afadf 10%, #4c83ff 100%);
}

.sparkboxes .box3 {
    background-image: linear-gradient(135deg, #ffd3a5 10%, #fd6585 100%);
}

.sparkboxes .box4 {
    background-image: linear-gradient(135deg, #ee9ae5 10%, #5961f9 100%);
}

.sparkboxes .box1 {
    background-image: linear-gradient(135deg, #abdcff 10%, #0396ff 100%);
}

.sparkboxes .box2 {
    background-image: linear-gradient(135deg, #2afadf 10%, #4c83ff 100%);
}

.sparkboxes .box3 {
    background-image: linear-gradient(135deg, #ffd3a5 10%, #fd6585 100%);
}

.sparkboxes .box4 {
    background-image: linear-gradient(135deg, #ee9ae5 10%, #5961f9 100%);
}

.chart-card {
    position: relative;
    height: 380px;
}

.ot-card .ot-invoice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 576px) {
    .ot-card .ot-invoice {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.ot-card .ot-invoice .ot-address ul {
    background: var(--ot-bg-secondary);
}

.ot-card .ot-invoice .ot-address ul li {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .ot-address h2 {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .col-sm h5 {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .col-sm div ul {
    background: var(--ot-bg-secondary);
}

.ot-card .ot-invoice .col-sm div ul li {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .col-sm div ul li strong {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .col-sm dl dt {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .col-sm dl dd {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .col-12 .email-address {
    color: var(--ot-primary-title);
}

.dark-theme .form-logo .default-logo {
    display: none;
}

.dark-theme .form-logo .dark-logo {
    display: block !important;
}

/*Auth Container end */
@media (max-width: 768px) {
    .auth-container {
        width: 480px;
    }

    .form-wrapper {
        padding: 40px 50px !important;
    }

    .form-container,
    .auth-form {
        width: 320px !important;
    }
}

@media (max-width: 576px) {
    .auth-container {
        width: 340px;
    }

    .form-wrapper {
        padding: 30px 40px !important;
    }

    .form-container,
    .auth-form {
        width: 300px !important;
    }
}

@media (max-width: 480px) {
    .auth-container {
        width: 320px;
    }

    .form-wrapper {
        padding: 40px 20px !important;
    }

    .form-container,
    .auth-form {
        width: 280px !important;
    }

    .social-login span {
        font-size: 10px;
    }
}

.form-check.d-flex.align-items-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d-flex.justify-content-between.align-items-center.w-100.mt-20 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.custom-height .ck-rounded-corners .ck.ck-editor__main>.ck-editor__editable,
.ck.ck-editor__main>.ck-editor__editable.ck-rounded-corners {
    height: 166px;
    border-radius: 0 0 8px 8px;
}

.page-type-content .note-editor.note-airframe .note-editing-area .note-editable,
.note-editor.note-frame .note-editing-area .note-editable {
    min-height: 200px;
    height: auto;
    border-radius: 0 0 8px 8px;
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar,
.ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
    border-radius: var(--ck-border-radius);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.note-btn.dropdown-toggle:after {
    content: none;
}

* {
    /* scrollbar-color: var(--scroll-color-one) var(--scroll-color-two); */
    scrollbar-width: thin;
    scrollbar-width: thin;
}

.srollbar {
    scrollbar-color: var(--scroll-color-one) var(--scroll-color-two);
    scrollbar-width: thin;
    scrollbar-width: 5px;
}

.scroll-fix {
    overflow-x: auto;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

.theme-icons {
    color: var(--ot-primary-title);
}

/* Deful class */
code {
    display: inline-block;
    text-transform: none;
    background: #ecf7ff;
    padding: 2px 4px;
    font-size: 14px;
    border-radius: 4px;
    margin: 0 4px 3px;
    color: var(--ot-primary);
    font-weight: 200;
    -webkit-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.card-title h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
    text-transform: capitalize;
}

@media screen and (max-width: 575px) {
    .ot-card {
        padding: 15px;
    }
}

.column-gap {
    gap: 14px;
}

.pricing-table-container .pricing-table-body .pricing-list ul .popular-title {
    background: var(--ot-bg-pricing-most-popular);
}

@media (max-width: 992px) {
    .simple-pricing-container .pricing-table-body .top-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/* =============== breadcrumb start =============== */
.page-header {
    padding: 20px;
    background-color: var(--ot-bg-secondary);
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    border-radius: 8px;
    margin-bottom: 24px;
}

.bookmark ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
}

.bookmark ul li {
    border: 0;
    background-color: var(--ot-bg-secondary);
    border-radius: 4px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.04) 0px 3px 7px -3px;
    box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.04) 0px 3px 7px -3px;
}

.bookmark ul li:hover {
    background: var(--ot-primary);
}

.bookmark ul li:hover a svg {
    color: var(--white);
    stroke: var(--white);
}

.bookmark ul li a svg {
    vertical-align: middle;
    height: 18px;
    width: 18px;
    margin: 12px;
    color: var(--ot-secondary-title);
}

@media screen and (max-width: 580px) {
    .bookmark ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        padding: 0px;
    }

    .bookmark ul li a svg {
        height: 17px;
        width: 19px;
        margin: 10px;
    }
}

.ot-badge-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--ot-bg-badge);
    padding: 1px 6px;
    border-radius: 2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: px;
}

.ot-badge-up .badge-basic-text {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: var(--ot-text-badge);
}

.ot-badge-up i {
    font-size: 10px;
    color: #15b974;
}

.bg-lightblue {
    background: var(--ot-bg-event-date-lightblue);
}

.color-lightblue {
    color: #6da5ff;
}

.bg-green {
    background: var(--ot-bg-event-date-green);
}

.color-green {
    color: #19cf7d;
}

.up-event-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.event-date {
    position: relative;
    width: 50px;
    margin-bottom: -4px;
    border-radius: 7px;
    padding: 8px;
}

.event-date .date {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: var(--ot-date);
}

.event-date .day {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    color: #6f767e;
}

.event-date-container {
    position: relative;
}

.event-date-container i {
    position: absolute;
    bottom: 0px;
    left: 21px;
    font-size: 8px;
    margin-bottom: -4px;
}

.event-details p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #6f767e;
    margin-bottom: 8px;
}

.event-details span {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    color: #6f767e;
    margin-bottom: 8px;
}

.progress-size,
.progress-lightblue,
.progress-lightgreen {
    width: 100%;
    height: 5px;
}

.progress-lightblue {
    background-color: #ecedff;
}

.progress-bar.progress-bar-lightblue {
    border-radius: 5px;
    background-color: #6da5ff;
}

.progress-lightgreen {
    background-color: #d8f8e9;
}

.progress-bar.progress-bar-lightgreen {
    border-radius: 5px;
    background-color: #19cf7d;
}

/* upcoming event  */
/* panding fee table  */
.table-head th {
    background: none !important;
    border: none !important;
    padding: 16px !important;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.table-body td {
    padding: 16px !important;
}

.bg-orange {
    background: var(--ot-bg-event-date-orange);
}

.color-orange {
    color: #e7792a;
}

.btn-panding-tb {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    padding: 12px;
    border-radius: 4px;
    width: 101px;
    text-align: center;
}

/* panding fee table  */
/* Notice board */
.notice-title h6 {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    background: var(--ot-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notice-title p {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 138.5%;
    color: #878888;
}

.gradient-btn {
    --r: 8px;
    --b: 1px;
    background: var(--ot-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    border-radius: var(--r);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    z-index: 0;
    text-decoration: none;
    width: 70px;
    height: 34px;
}

.gradient-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border: var(--b) solid transparent;
    border-radius: var(--r);
    background: inherit;
    background-origin: border-box;
    background-clip: border-box;
    -webkit-mask: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(0, #fff)) padding-box,
        -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-mask-repeat: no-repeat;
}

/* Notice board */
/* =========== school dashboard end =========*/
/* ========== e-commerce dashboard ========== */
/* Latest Orders table  */
.table-latest-order thead tr th {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    color: #b2bec3;
    padding: 18px 10px;
}

.table-latest-order tbody tr td {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--ot-primary-title);
    padding: 18px 10px;
}

.btn-order-status {
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    padding: 6px 16px;
    border: 1px solid;
    border-radius: 7px;
}

/* Latest Orders table */
.upgrade-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.upgrade-account h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 18px;
    text-align: center;
}

.upgrade-account p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.upgrade-account img {
    width: 100%;
}

/* Revenue */
.component-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.component-heading .date {
    font-weight: 600;
    font-size: 12px;
    color: var(--ot-primary-title);
}

.chart-custom-content h3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.chart-custom-content .counter {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

/* Revenue end */
/* Browser States */
.browser-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.browser-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.browser-percent {
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 0;
}

/* Browser States  end */
.btn-detail {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #0010f7;
    border: 1px solid #0010f7;
    border-radius: 7px;
    padding: 8px 16px;
}

.new-version {
    height: 576px;
    background-image: url(../images/new-version.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.new-version h1 {
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 0;
    color: #2d3436;
}

.new-version p {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #b2bec3;
    margin-top: 0;
}

@media screen and (max-width: 1200px) {
    .profile-info {
        display: none !important;
    }
}

@media screen and (max-width: 991px) {
    .tab-none {
        display: none;
    }

    .spacing-icon {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .chat-container .chat-app .people-list {
        height: 465px;
        width: 100%;
        display: block;
        overflow: hidden;
    }

    .chat-container .chat-app .chat {
        margin: 0;
    }

    .chat-container .chat-app .people-list {
        position: unset;
    }
}

@media screen and (max-width: 768px) {
    .spacing-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .chat-container .chat-app .chat-history {
        height: unset;
    }
}

@media screen and (min-width: 769px) {
    .spacing-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .ph-lg-32 {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

.chat-container .chat-app .chat {
    border-left: 1px solid var(--ot-primary-border);
}

.chat-container .chat-app .chat .chat-header,
.chat-container .chat-app .chat .chat-history {
    border-bottom: 1px solid var(--ot-primary-border);
    padding: 18px 20px;
}

.chat-container .chat .chat-message-container .chat-message {
    border: 1px solid var(--ot-primary-border) !important;
}

.ot-charts .card .card-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ot-visit-chart p {
    margin-top: 16px;
}

.select2-container .select2-selection--single {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 30px;
    background-color: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    padding-right: 15px;
}

.select2-container .select2-selection--single:hover {
    border: 1px solid var(--ot-primary);
}

#select2-language-change-container:hover {
    color: var(--ot-primary);
}

.header-control-item .select2-container .select2-selection--single {
    height: 40px;
}

.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.multi-select-wrap .select2.select2-container.select2-container--default {
    width: auto !important;
}

.multi-select-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -3px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    font-weight: 300;
}

selection--single .select2-selection__rendered {
    color: #dde1ff;
    line-height: 40px;
}

input.select2-search__field:focus-visible {
    outline: none;
}

input[type="file"] {
    padding-left: 10px !important;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--ot-bg-table-tbody);
    color: var(--ot-primary-title);
    -webkit-transition: 1s;
    transition: 1s;
}

input[type="file"]::file-selector-button {
    background: var(--ot-bg-table-tbody);
    color: var(--ot-primary-title);
    -webkit-transition: 1s;
    transition: 1s;
}

input[type="file"]::-ms-browse:hover {
    background: var(--ot-bg-table-tbody);
    color: var(--ot-primary-title);
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: var(--ot-bg-table-tbody) !important;
    color: var(--ot-primary-title);
}

input[type="file"]::file-selector-button:hover {
    background: var(--ot-bg-table-tbody) !important;
    color: var(--ot-primary-title);
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--ot-bg-table-tbody);
    color: var(--ot-primary-title);
}

.select2-container--default .select2-results__option--selected {
    color: var(--ot-primary-title) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--ot-primary);
}

.select2-dropdown,
input.select2-search__field:focus-visible,
.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible,
.select2-container--default .select2-selection--multiple:focus-visible,
input.daterange-table-filter,
.select2-search__field:focus-visible {
    border: 1px solid var(--ot-primary-border) !important;
    color: var(--ot-primary-title) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--ot-primary-border) !important;
    color: var(--ot-primary-title) !important;
    background-color: var(--white) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35) !important;
    box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35) !important;
    border: 1px solid #0010f7 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    border: 1px solid var(--ot-primary-border) !important;
    color: var(--ot-primary-title) !important;
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@media screen and (min-width: 1201px) {
    .notification-container {
        width: calc(100% - 440px);
    }

    .filter-container {
        width: 440px;
    }

    .filter-container .filter {
        position: unset;
    }
}

.dropdown-menu {
    background: var(--ot-bg-secondary);
    border: 0;
    border: 0;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 24px;
    margin-top: 10px;
    color: var(--ot-primary-title);
    min-width: 210px;
    min-height: 100px;
}

.dropdown-item {
    color: #6f767e;
    background: transparent;
    text-transform: capitalize;
}

.ot-visit-chart p {
    line-height: 22px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--white);
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.dropdown-designation .form-control {
    background-color: var(--ot-bg-primary) !important;
    border: 1px solid #f0eeee !important;
    outline: none !important;
    color: var(--ot-primary-title) !important;
}

.dropdown-designation .form-control::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.dropdown-designation .form-control::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.dropdown-designation .form-control:-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.dropdown-designation .form-control::-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.dropdown-designation .form-control::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.ecommerce-components.order-details .icon-box {
    min-width: 60px;
}

.faq .faq-card {
    margin-bottom: 24px;
}

.profile-body-form .form-control {
    background-color: none;
    border: 1px solid #f0eeee !important;
    outline: none !important;
    color: var(--ot-primary-title) !important;
    background: var(--white);
}

.profile-body-form .form-control::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.profile-body-form .form-control::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.profile-body-form .form-control:-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.profile-body-form .form-control::-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.profile-body-form .form-control::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #b2bec3;
}

.chat-container .chat-app .chat .chat-header .dropdown button {
    line-height: 1.2;
    font-size: 34px;
}

.chat-container .chat-app .chat .chat-history .message {
    padding: 9px 20px;

}

/* -----------  Ashim ---------------*/
@media (max-width: 575.98px) {
    .notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer .btn {
        padding: 6px 12px;
        height: unset;
    }
}

.faq-card .ot-accordion-cust .accordion-item .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ---------- Custom-code ------------*/
.ot-pagination .active>.page-link {
    background: var(--ot-primary);
    color: #ffffff !important;
    border-color: transparent !important;
}

.ot-pagination .page-link:hover {
    background: var(--ot-primary);
    border-color: transparent !important;
}

.fillable {
    color: red;
}

.favicon-sidebar {
    width: 30px !important;
    height: 30px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form sup {
    color: red;
}

.user-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.user-card span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.user-avatar+.user-info,
[class^="user-avatar"]:not([class*="-group"])+.user-info {
    margin-left: 1rem;
}

.user-card img {
    width: 50px;
    border-radius: 3px;
}

button.profile-expand-item {
    padding: 0 !important;
    font-family: var(--poppins);
}

.profile-menu img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.profile-body .card-header {
    border-bottom: 1.5px solid var(--ot-primary-border);
}

.profile-body .image-box img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
}

.direction-button div {
    padding-top: 6px;
    display: table-cell;
}

/* second clild */
.direction-button div:nth-child(3) {
    padding-left: 35px !important;
}

/* select2 for currency  */
.select2-search__field[aria-controls="select2-language_with_flag-results"],
.select2-search__field[aria-controls="select2-currencies-results"] {
    padding: 8px 5px;
}

.user_roles_border,
.user_roles_permission {
    border: 1px solid #e9e9ef;
}

.user_roles_border {
    border-right: none;
}

.user_roles_permission {
    border-left: none;
}

/* user avater in table  */
.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 8px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
}

/* dashboard form image  */
.ot-input-image-preview {
    max-width: 100px !important;
}

.ot-charts .card .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ot-charts .card .card-header h1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.ot-charts .card .card-header h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.submit-button-only-border {
    background: transparent;
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
}

.submit-button-only-border:hover {
    background: var(--ot-primary);
    color: var(--white);
    border: 1px solid transparent;
}

/* design issue update */
/* sidebar  */
.sidebar .metismenu .has-arrow::after {
    -webkit-transform: rotate(135deg) translate(0, -50%);
    transform: rotate(135deg) translate(0, -50%);
}

.sidebar .metismenu .mm-active>.has-arrow::after,
.sidebar .metismenu .has-arrow[aria-expanded="true"]::after {
    -webkit-transform: rotate(225deg) translate(0, -50%);
    transform: rotate(225deg) translate(0, -50%);
}

.sidebar .parent-item-content i {
    font-size: 22px;
    line-height: 1;
}

/* table  */
.user-table .serial {
    max-width: 70px;
    min-width: 70px;
}

.role-table .serial {
    max-width: 50px;
    min-width: 50px;
}

.language-table .serial {
    max-width: 50px;
    min-width: 50px;
}

.role-permisssion-control {
    border: 1px solid #eaeaea;
    background-color: var(--ot-bg-secondary);
    border-radius: 5px;
    padding: 28px;
}

span.select2-search.select2-search--dropdown {
    padding: 7px 17px 0 17px;
}

.apexcharts-legend-text {
    color: var(--ot-chart-text) !important;
    font-family: var(--poppins);
}

#visited_customer_chart .apexcharts-legend-text {
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 20px !important;
}

#visited_customer_chart .apexcharts-datalabels-group text {
    font-family: var(--poppins);
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    fill: #6f767e;
}

#revenueChart .apexcharts-legend-text {
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    margin-left: 10px;
}

#revenueChart .apexcharts-legend-series {
    margin-left: 20px !important;
}

#revenueChart .apexcharts-yaxis-label,
#revenueChart .apexcharts-xaxis-label {
    font-family: var(--poppins);
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    fill: #6f767e !important;
}

tspan {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    fill: #6f767e !important;
}

/* permission  */
.permission-list-td {
    min-width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.permission-list-td label {
    margin-left: 8px;
}

/* badge  */
.badge-basic-success-bg {
    background-color: rgba(41, 214, 151, 0.1);
}

.badge-basic-danger-bg {
    background-color: rgba(255, 106, 84, 0.1);
}

.badge-basic-warning-bg {
    background-color: rgba(255, 153, 26, 0.1);
}

.badge-basic-info-bg {
    background-color: rgba(0, 223, 229, 0.1);
}

.badge-basic-primary-bg {
    background-color: rgb(86, 105, 255), 0.1;
}

/* ot btn  */
.ot-btn-primary,
.ot-btn-danger,
.ot-btn-warning,
.ot-btn-info {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    padding: 11px 16px;
    border: none;
}

@media only screen and (max-width: 767.98px) {
    .direction-button {
        margin-top: 14px;
    }

    .favicon-uploader,
    .default-langauge {
        margin-top: 20px;
    }

    .term-translated-language .translated_language {
        margin-top: 16px;
    }
}

@media only screen and (max-width: 991.98px) {
    .role-permisssion-control {
        margin-top: 24px;
    }
}

/* summery card  */
.summery-card .card-heading .card-icon {
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.summery-card .card-heading .card-icon.icon-circle-1 {
    background-color: rgba(172, 224, 195, 0.1);
    color: rgb(172, 224, 195);
}

.summery-card .card-heading .card-icon.icon-circle-2 {
    background-color: rgba(194, 183, 252, 0.1);
    color: rgb(194, 183, 252);
}

.summery-card .card-heading .card-icon.icon-circle-3 {
    background-color: rgba(254, 179, 145, 0.1);
    color: rgb(254, 179, 145);
}

.summery-card .card-heading .card-icon.icon-circle-4 {
    background-color: rgba(168, 225, 249, 0.1);
    color: rgb(168, 225, 249);
}

/* profile body  */
@media only screen and (max-width: 769px) {
    .profile-content .profile-body {
        padding: 40px 24px !important;
    }
}

@media only screen and (max-width: 460px) {
    .profile-content .profile-body h2.title {
        font-size: 24px;
    }
}

.btn-group-container {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swal2-popup {
    background: var(--ot-bg-secondary);
}

.metismenu .has-arrow::after {
    right: 1.5em;
}

.nicescroll-cursors {
    background: #eeeeee !important;
}

.ot-btn-common,
.ot-dropdown-btn,
.ot-btn-primary,
.ot-btn-success,
.ot-btn-warning,
.ot-btn-info {
    background: var(--ot-primary) !important;
}

button:focus:not(:focus-visible) {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-check:active+.btn:focus,
.btn-check:checked+.btn:focus,
.btn.active:focus,
.btn.show:focus,
.btn:active:focus {
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.btn-check:active+.btn,
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:active {
    color: inherit;
    background-color: inherit;
    border-color: inherit;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list {
    gap: 9px;
    padding: 10px;
}

.sidebar {
    -webkit-box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.04) 0px 3px 7px -3px;
    box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.04) 0px 3px 7px -3px;
}

.height-350 {
    height: 350px;
}

.unseen {
    background-color: var(--ot-bg-primary);
}

.wave-animated {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.wave-animated::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    z-index: 1;
    bottom: -330px;
    right: -117px;
    border-radius: 150px;
    background: #fff5ea;
    -webkit-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.wave-animated::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 150px;
    background: #fff4e8;
    z-index: -1;
    bottom: -328px;
    right: -110px;
    z-index: 2;
    -webkit-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.summery-card .card-heading .card-content h1 {
    font-size: 27px;
}

/* Cart Counter */
.cart-five .single-counter .counter,
.cart-five .single-counter .roman-numeral {
    font-size: 35px;
    color: #2b394f;
}

.cart-five .single-counter .roman-numeral {
    font-size: 35px;
}

.single-counter .counter,
.single-counter .roman-numeral {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 575px) {

    .single-counter .counter,
    .single-counter .roman-numeral {
        font-size: 30px;
    }
}

.single-counter .pera-count h5 {
    color: #131933;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 11px;
    font-family: var(--body-font);
}

.single-counter .pera-count .pera {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-counter .pera-count .pera {
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-counter .pera-count .pera {
        font-size: 17px;
    }
}

/* Upade Cart */
.card-badge img {
    width: 13px;
}

.summery-card .card-bottom .card-states .card-badge {
    font-size: 11px;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list .profile-expand-item span {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer p {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Search */
.serch-sagetion {
    background: var(--white);
    -webkit-box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.04) 0px 3px 7px -3px;
    box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.04) 0px 3px 7px -3px;
    position: absolute;
    width: 100%;
    top: 108%;
    margin: 0;
    padding: 10px 0;
}

.serch-sagetion .single-list {
    list-style: none;
}

.serch-sagetion .single-list .singlePage-link {
    font-size: 14px;
    color: var(--ot-primary-title);
    display: block;
    padding: 6px 13px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
}

.icon-flag {
    width: 26px;
    height: 26px;
    line-height: 27px;
    overflow: hidden;
    border-radius: 50%;
}

.icon-flag i {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    padding: 0;
    border: 1px solid #6f767e;
    font-size: 23px;
}

.table-height-350 {
    max-height: 350px;
}

.card-title h1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.card-title h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.card-header h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
    text-transform: capitalize;
}

#row_1 td:first-child {
    width: 40px;
}

.ot-pagination {
    margin-top: 24px;
}

.chat-container .chat-app .people-list .chat-list li {
    position: relative;
    margin: 15px 0;
}

.chat-container .chat-app .people-list .chat-list li::before {
    content: "";
    bottom: -9px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
}

.card.chat-app .people-list h3 {
    margin-bottom: 28px;
    font-size: 20px;
    font-weight: 500;
}

.chat-container .chat-app .chat .chat-history .message {
    font-size: 15px;
    font-weight: 400;
    color: var(--ot-primary-title);
    background: var(--ot-bg-primary);
}

.chat-container .chat-app .chat .chat-history .message {
    font-size: 15px;
    font-weight: 400;
}

.list-unstyled.niceScroll.chat-list {
    height: calc(100vh - 400px);
    overflow: hidden;
}

.chat-container .card {
    overflow: hidden;
}

.clearfix.replyMessage {
    text-align: right;
}

.clearfix.message {
    text-align: left;
}

.clearfix.replyMessage {
    text-align: right;
}

.clearfix.replyMessage .message-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chat-container .chat-app .chat .chat-history .message::after {
    left: 22px;
}

.clearfix.replyMessage .message::after {
    left: auto !important;
    right: 22px;
}

.clearfix.replyMessage .message-data-time {
    padding-left: auto !important;
    padding-right: 6px;
}

.chat-container .chat-app .chat .chat-history ul li {
    margin-bottom: 10px;
}

.chat-history.niceScroll {
    max-height: 480px;
}

.notification-container .notification-col .card .card-head .item-selector .action .btn-action {
    padding: 4px 7px;
    border-radius: 10px;
    font-size: 24px;
    border: 0;
}

.notification-container .notification-col .card .card-head .item-selector .action .btn-action:hover {
    border: 0;
}

.notification-container .notification-col .card .card-head .item-selector .select-items {
    min-width: 106px;
    height: 34px;
    border: 1px solid #efefef;
    border-radius: 5px;
    outline: none;
    padding: 5px;
}

.notification-container .notification-col .card .card-head .item-selector .select-items:hover {
    border: 1px solid #efefef;
}

.notification-container .notification-col .card {
    padding: 35px 24px;
}

.ot-btn-common,
.ot-dropdown-btn,
.ot-btn-primary,
.ot-btn-success,
.ot-btn-danger,
.ot-btn-warning,
.ot-btn-info {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
}

.ot-btn-common,
.ot-dropdown-btn,
.ot-btn-primary,
.ot-btn-success,
.ot-btn-danger,
.ot-btn-warning,
.ot-btn-info {
    padding: 9px 18px;
}

.profile-info h6 {
    margin-bottom: 2px;
    font-size: 15px;
}

.profile-info p {
    font-size: 13px;
    font-weight: 500;
}

.listing-calss {
    margin-bottom: 0;
}

.listing-calss .list {
    list-style: none;
    margin-bottom: 5px;
}

.listing-calss .list span {
    color: var(--ot-primary-title);
}

.listing-calss .list:nth-child(3n) {
    margin-bottom: 24px;
}

.listing-calss .list:last-child {
    margin-bottom: 0px;
}

.listing-calss {
    padding-left: 14px;
}

/* Make class Font size */
.font-size-1 {
    font-size: 1px !important;
}

.font-size-2 {
    font-size: 2px !important;
}

.font-size-3 {
    font-size: 3px !important;
}

.font-size-4 {
    font-size: 4px !important;
}

.font-size-5 {
    font-size: 5px !important;
}

.font-size-6 {
    font-size: 6px !important;
}

.font-size-7 {
    font-size: 7px !important;
}

.font-size-8 {
    font-size: 8px !important;
}

.font-size-9 {
    font-size: 9px !important;
}

.font-size-10 {
    font-size: 10px !important;
}

.font-size-11 {
    font-size: 11px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-15 {
    font-size: 15px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-17 {
    font-size: 17px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-19 {
    font-size: 19px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-21 {
    font-size: 21px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-23 {
    font-size: 23px !important;
}

.font-size-24 {
    font-size: 24px !important;
}

.font-size-25 {
    font-size: 25px !important;
}

.font-size-26 {
    font-size: 26px !important;
}

.font-size-27 {
    font-size: 27px !important;
}

.font-size-28 {
    font-size: 28px !important;
}

.font-size-29 {
    font-size: 29px !important;
}

.font-size-30 {
    font-size: 30px !important;
}

.font-size-31 {
    font-size: 31px !important;
}

.font-size-32 {
    font-size: 32px !important;
}

.font-size-33 {
    font-size: 33px !important;
}

.font-size-34 {
    font-size: 34px !important;
}

.font-size-35 {
    font-size: 35px !important;
}

.font-size-36 {
    font-size: 36px !important;
}

.font-size-37 {
    font-size: 37px !important;
}

.font-size-38 {
    font-size: 38px !important;
}

.font-size-39 {
    font-size: 39px !important;
}

.font-size-40 {
    font-size: 40px !important;
}

.font-size-41 {
    font-size: 41px !important;
}

.font-size-42 {
    font-size: 42px !important;
}

.font-size-43 {
    font-size: 43px !important;
}

.font-size-44 {
    font-size: 44px !important;
}

.font-size-45 {
    font-size: 45px !important;
}

.font-size-46 {
    font-size: 46px !important;
}

.font-size-47 {
    font-size: 47px !important;
}

.font-size-48 {
    font-size: 48px !important;
}

.font-size-49 {
    font-size: 49px !important;
}

.font-size-50 {
    font-size: 50px !important;
}

/* Make class Font Weight */
.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

/* Make class Font color */
.font-primary {
    color: var(--ot-primary) !important;
}

.font-secondary {
    color: #ba895d !important;
}

.font-success {
    color: #3cc13b !important;
}

.font-danger {
    color: #d22d3d !important;
}

.font-info {
    color: #717171 !important;
}

.font-light {
    color: #e6edef !important;
}

.font-dark {
    color: #2c323f !important;
}

.font-warning {
    color: #e2c636 !important;
}

/* Make class label color */
/* Make class background color */
bg-primary {
    background-color: var(--ot-primary) !important;
}

.bg-secondary {
    background-color: #ba895d !important;
}

.bg-success {
    background-color: #3cc13b !important;
}

.bg-danger {
    background-color: #d22d3d !important;
}

.bg-info {
    background-color: #717171 !important;
}

.bg-light {
    background-color: #e6edef !important;
}

.bg-dark {
    background-color: #2c323f !important;
}

.bg-warning {
    background-color: #e2c636 !important;
}

/* Weight and Height */
.height-1 {
    height: 1px !important;
}

.wight-1 {
    width: 1px;
}

.height-2 {
    height: 2px !important;
}

.wight-2 {
    width: 2px;
}

.height-3 {
    height: 3px !important;
}

.wight-3 {
    width: 3px;
}

.height-4 {
    height: 4px !important;
}

.wight-4 {
    width: 4px;
}

.height-5 {
    height: 5px !important;
}

.wight-5 {
    width: 5px;
}

.height-6 {
    height: 6px !important;
}

.wight-6 {
    width: 6px;
}

.height-7 {
    height: 7px !important;
}

.wight-7 {
    width: 7px;
}

.height-8 {
    height: 8px !important;
}

.wight-8 {
    width: 8px;
}

.height-9 {
    height: 9px !important;
}

.wight-9 {
    width: 9px;
}

.height-10 {
    height: 10px !important;
}

.wight-10 {
    width: 10px;
}

.height-11 {
    height: 11px !important;
}

.wight-11 {
    width: 11px;
}

.height-12 {
    height: 12px !important;
}

.wight-12 {
    width: 12px;
}

.height-13 {
    height: 13px !important;
}

.wight-13 {
    width: 13px;
}

.height-14 {
    height: 14px !important;
}

.wight-14 {
    width: 14px;
}

.height-15 {
    height: 15px !important;
}

.wight-15 {
    width: 15px;
}

.height-16 {
    height: 16px !important;
}

.wight-16 {
    width: 16px;
}

.height-17 {
    height: 17px !important;
}

.wight-17 {
    width: 17px;
}

.height-18 {
    height: 18px !important;
}

.wight-18 {
    width: 18px;
}

.height-19 {
    height: 19px !important;
}

.wight-19 {
    width: 19px;
}

.height-20 {
    height: 20px !important;
}

.wight-20 {
    width: 20px;
}

.height-21 {
    height: 21px !important;
}

.wight-21 {
    width: 21px;
}

.height-22 {
    height: 22px !important;
}

.wight-22 {
    width: 22px;
}

.height-23 {
    height: 23px !important;
}

.wight-23 {
    width: 23px;
}

.height-24 {
    height: 24px !important;
}

.wight-24 {
    width: 24px;
}

.height-25 {
    height: 25px !important;
}

.wight-25 {
    width: 25px;
}

.height-26 {
    height: 26px !important;
}

.wight-26 {
    width: 26px;
}

.height-27 {
    height: 27px !important;
}

.wight-27 {
    width: 27px;
}

.height-28 {
    height: 28px !important;
}

.wight-28 {
    width: 28px;
}

.height-29 {
    height: 29px !important;
}

.wight-29 {
    width: 29px;
}

.height-30 {
    height: 30px !important;
}

.wight-30 {
    width: 30px;
}

.height-31 {
    height: 31px !important;
}

.wight-31 {
    width: 31px;
}

.height-32 {
    height: 32px !important;
}

.wight-32 {
    width: 32px;
}

.height-33 {
    height: 33px !important;
}

.wight-33 {
    width: 33px;
}

.height-34 {
    height: 34px !important;
}

.wight-34 {
    width: 34px;
}

.height-35 {
    height: 35px !important;
}

.wight-35 {
    width: 35px;
}

.height-36 {
    height: 36px !important;
}

.wight-36 {
    width: 36px;
}

.height-37 {
    height: 37px !important;
}

.wight-37 {
    width: 37px;
}

.height-38 {
    height: 38px !important;
}

.wight-38 {
    width: 38px;
}

.height-39 {
    height: 39px !important;
}

.wight-39 {
    width: 39px;
}

.height-40 {
    height: 40px !important;
}

.wight-40 {
    width: 40px;
}

.height-41 {
    height: 41px !important;
}

.wight-41 {
    width: 41px;
}

.height-42 {
    height: 42px !important;
}

.wight-42 {
    width: 42px;
}

.height-43 {
    height: 43px !important;
}

.wight-43 {
    width: 43px;
}

.height-44 {
    height: 44px !important;
}

.wight-44 {
    width: 44px;
}

.height-45 {
    height: 45px !important;
}

.wight-45 {
    width: 45px;
}

.height-46 {
    height: 46px !important;
}

.wight-46 {
    width: 46px;
}

.height-47 {
    height: 47px !important;
}

.wight-47 {
    width: 47px;
}

.height-48 {
    height: 48px !important;
}

.wight-48 {
    width: 48px;
}

.height-49 {
    height: 49px !important;
}

.wight-49 {
    width: 49px;
}

.height-50 {
    height: 50px !important;
}

.wight-50 {
    width: 50px;
}

.ot-pricing-table .table tbody tr td .pricing-list ul li .btn-container {
    padding: 1px;
    margin: 25px 0px 0px 0px;
}

.pricing-table-container .pricing-table-body .pricing-list ul li .btn-container {
    padding: 1px;
}

.pricing-table-container .pricing-table-body .pricing-list:hover {
    background: var(--ot-bg-pricing-table-gradient);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-table-container .pricing-table-body .basic {
    z-index: 1;
}

.pricing-table-container .pricing-header .btn-switch-content .btn-switch {
    width: 227px;
    height: 47px;
    background: none;
}

.pricing-table-container .pricing-header .btn-switch-content .btn-switch input:checked+label {
    margin-top: 1px;
}

.pricing-table-container .pricing-header .btn-switch-content {
    background: var(--white);
}

.pricing-table-container .pricing-header {
    padding: 81px 0px;
    background: url(../../assets/images/BG2.jpg);
    background-size: cover;
    background-position: center center;
}

.pricing-table-container .pricing-header p {
    text-transform: uppercase;
}

.pricing-table-container .pricing-table-body .pricing-list ul li .facility-detail ul {
    padding: 0px 0 0 20px;
}

.chart-card2 {
    position: relative;
}

.timeline-marker::before {
    background: var(--ot-primary) !important;
    border-radius: 3px;
    border: 0;
}

.timeline-item:not(.period):hover .timeline-marker::before {
    border: 0;
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            from(rgba(45, 125, 255, 0.7215686275)),
            to(rgba(33, 198, 251, 0.6588235294))) !important;
    background: linear-gradient(0deg,
            rgba(45, 125, 255, 0.7215686275) 0%,
            rgba(33, 198, 251, 0.6588235294) 100%) !important;
}

.timeline-info {
    margin: 0 0 0.8em 0;
}

.timeline-info .info-details {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: capitalize;
    white-space: nowrap;
}

.class-time {
    padding: 0;
}

.class-time .list {
    list-style: none;
    padding: 0;
    color: var(--ot-primary-title);
}

.timeline-content {
    padding-bottom: 30px;
}

.timeline-content .pera {
    color: var(--ot-primary-title);
}

.timeline-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.height-490 {
    height: 490px;
}

.height-300 {
    height: 300px;
}

@media only screen and (min-width: 1400px) {
    .height-ot-300 {
        height: 300px;
    }
}

.tbody tr td:first-child {
    width: 100px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #ddd 1px;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item {
    padding: 10px 10px;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-content h6 {
    font-size: 13px;
}

/* CART */
.bg-soft-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#fff0e1),
            to(#fff0e1));
    background: linear-gradient(90deg, #fff0e1, #fff0e1);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.bg-success-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#07cdae),
            to(#84d9d2));
    background: linear-gradient(90deg, #07cdae, #84d9d2);
}

.bg-warning-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#ffd500),
            to(#f6e384));
    background: linear-gradient(90deg, #ffd500, #f6e384);
}

.bg-beguni-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#e9e3fe),
            to(#e9e3fe));
    background: linear-gradient(90deg, #e9e3fe, #e9e3fe);
}

.bg-blue-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#d1ebff),
            to(#d1ebff));
    background: linear-gradient(90deg, #d1ebff, #d1ebff);
}

.bg-orange-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#1b5661),
            color-stop(99%, #989898));
    background: linear-gradient(90deg, #1b5661, #989898 99%);
}

.bg-romance-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#be3664),
            color-stop(99%, #222771));
    background: linear-gradient(90deg, #be3664, #222771 99%);
}

.bg-tea-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#b9e9ce),
            to(#c4f8db));
    background: linear-gradient(90deg, #b9e9ce, #c4f8db);
}

.bg-royal-gradient {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#aa3475),
            color-stop(99%, #cb7326));
    background: linear-gradient(90deg, #aa3475, #cb7326 99%);
}

/* Cat same desing other */
.bg-soft-gradient .icon {
    background: #fcab5e;
}

.bg-soft-gradient .icon2 {
    background: #fff5ea;
    color: #fcab5e;
}

.bg-soft-gradient .countPersent::before {
    background: #fcab5e;
}

/* Cat same desing other */
.bg-beguni-gradient.wave-animated::before {
    background: #eee9ff;
}

.bg-beguni-gradient.wave-animated::after {
    background: #f0ebfd;
}

.bg-beguni-gradient .icon {
    background: #8a70d6;
}

.bg-beguni-gradient .icon2 {
    background: #e2d9ff;
    color: #8a70d6;
}

.bg-beguni-gradient .countPersent::before {
    background: #8a70d6;
}

/* Cat same desing other */
.bg-blue-gradient.wave-animated::before {
    background: #dcefff;
}

.bg-blue-gradient.wave-animated::after {
    background: #deeefe;
}

.bg-blue-gradient .icon {
    background: #579be4;
}

.bg-blue-gradient .icon2 {
    background: #cbe8ff;
    color: #579be4;
}

.bg-blue-gradient .countPersent::before {
    background: #579be4;
}

/* Cat same desing other */
.bg-tea-gradient.wave-animated::before {
    background: rgba(206, 255, 227, 0.28);
}

.bg-tea-gradient.wave-animated::after {
    background: rgba(206, 255, 227, 0.39);
}

.bg-tea-gradient .icon {
    background: #7cedad;
}

.bg-tea-gradient .icon2 {
    background: rgba(206, 255, 227, 0.28);
    color: #7cedad;
}

.bg-tea-gradient .countPersent::before {
    background: #7cedad;
}

.cart-two {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow: hidden;
    cursor: pointer;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .cart-two {
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cart-two {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .cart-two {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.cart-two .cartCaption {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cart-two .cartCaption .cart-title {
    color: var(--ot-primary-title);
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .cart-two .cartCaption .cart-title {
        font-size: 18px;
    }
}

.cart-two .cartCaption .cartCap,
.cart-two .cartCaption .cart-five .pera,
.cart-five .cart-two .cartCaption .pera {
    color: var(--heading-color-two);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 24px;
}

.cart-two .cartCaption .cartCap .countPersent,
.cart-two .cartCaption .cart-five .pera .countPersent,
.cart-five .cart-two .cartCaption .pera .countPersent {
    color: #28b95e;
    font-weight: 500;
}

.cart-two .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 10px;
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 25px;
    color: white;
    border-radius: 9px;
}

.icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-two .icon2 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 10px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
}

.cart-three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow: hidden;
    cursor: pointer;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .cart-three {
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cart-three {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .cart-three {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.cart-three.cartStyle-two .cartCaption .icon {
    color: #696cff;
    background: rgba(105, 108, 255, 0.1);
}

.cart-three.cartStyle-two .cartCaption .cartCap .countPersent,
.cart-three.cartStyle-two .cartCaption .cart-five .pera .countPersent,
.cart-five .cart-three.cartStyle-two .cartCaption .pera .countPersent {
    color: #696cff;
}

.cart-three .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 50%;
    margin-right: 20px;
}

.cart-three .cartCaption {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cart-three .cartCaption .cart-title {
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .cart-three .cartCaption .cart-title {
        font-size: 18px;
    }
}

.cart-three .cartCaption .cartCap,
.cart-three .cartCaption .cart-five .pera,
.cart-five .cart-three .cartCaption .pera {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 24px;
}

.cart-three .cartCaption .cartCap .countPersent,
.cart-three .cartCaption .cart-five .pera .countPersent,
.cart-five .cart-three .cartCaption .pera .countPersent {
    color: #28b95e;
    font-weight: 500;
}

.cart-four {
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .cart-four {
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cart-four {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .cart-four {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.cart-four .progress {
    margin-bottom: -1px;
    background: rgba(40, 185, 94, 0.1);
}

.cart-four .progress .progress-bar {
    background: #28b95e;
}

.cart-four.cartStyle-two .cartCap .countPersent,
.cart-four.cartStyle-two .cart-five .pera .countPersent,
.cart-five .cart-four.cartStyle-two .pera .countPersent {
    color: #696cff;
}

.cart-four.cartStyle-two .icon {
    color: #696cff;
    background: rgba(105, 108, 255, 0.1);
}

.cart-four.cartStyle-two .progress {
    margin-bottom: -1px;
    background: rgba(105, 108, 255, 0.1);
}

.cart-four.cartStyle-two .progress .progress-bar {
    background: #696cff;
}

.cart-four.cartStyle-two:hover .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #696cff;
    background: #696cff;
    color: var(--white);
}

.cart-four.cartStyle-three .cartCaption .cartCap .countPersent,
.cart-four.cartStyle-three .cartCaption .cart-five .pera .countPersent,
.cart-five .cart-four.cartStyle-three .cartCaption .pera .countPersent {
    color: #f0783c;
}

.cart-four.cartStyle-three .icon {
    color: #f0783c;
    background: rgba(240, 120, 60, 0.1);
}

.cart-four.cartStyle-three .progress {
    margin-bottom: -1px;
    background: rgba(240, 120, 60, 0.1);
}

.cart-four.cartStyle-three .progress .progress-bar {
    background: #f0783c;
}

.cart-four.cartStyle-three:hover .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #f0783c;
    background: #f0783c;
    color: var(--white);
}

.countPersent {
    position: relative;
}

.countPersent::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: -20px;
    top: 2px;
}

.cart-four.cartStyle-four .cartCaption .cartCap .countPersent,
.cart-four.cartStyle-four .cartCaption .cart-five .pera .countPersent,
.cart-five .cart-four.cartStyle-four .cartCaption .pera .countPersent {
    color: #f04b69;
}

.cart-four.cartStyle-four .icon {
    color: #f04b69;
    background: rgba(240, 75, 105, 0.1);
}

.cart-four.cartStyle-four .progress {
    margin-bottom: -1px;
    background: rgba(240, 75, 105, 0.1);
}

.cart-four.cartStyle-four .progress .progress-bar {
    background: #f04b69;
}

.cart-four.cartStyle-four:hover .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #f04b69;
    background: #f04b69;
    color: var(--white);
}

.cart-four .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #28b95e;
    background: rgba(40, 185, 94, 0.1);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 50%;
    margin-right: 20px;
}

.cart-four .cartCap,
.cart-four .cart-five .pera,
.cart-five .cart-four .pera {
    color: var(--paragraph-color-one);
    font-size: 16px;
    margin-bottom: 20px;
}

.countPersent {
    color: var(--ot-primary-title);
    color: var(--ot-primary-title);
    font-weight: 400;
    margin: 0 5px;
    font-size: 15px;
}

.cart-four .cartCaption .cart-title {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 21px;
    display: block;
    margin-bottom: 8px;
    text-align: right;
    color: var(--paragraph-color-two);
}

@media (max-width: 575px) {
    .cart-four .cartCaption .cart-title {
        font-size: 18px;
    }
}

.cart-four .cartCaption .single-counter .counter,
.cart-four .cartCaption .single-counter .countPlus {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--paragraph-color-two);
}

.cart-four:hover .icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #28b95e;
    background: #28b95e;
    color: var(--white);
}

.cart-five {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    border-right: 3px solid rgba(60, 193, 59, 0.2);
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .cart-five {
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cart-five {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .cart-five {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.cart-five.bg-success-soft {
    border-right: 3px solid rgba(60, 193, 59, 0.2);
    background: rgba(60, 193, 59, 0.1);
}

.cart-five.bg-warning-soft {
    border-right: 3px solid rgba(243, 187, 28, 0.2);
    background: rgba(243, 187, 28, 0.1);
}

.cart-five.bg-danger-soft {
    border-right: 3px solid rgba(220, 53, 69, 0.2);
    background: rgba(220, 53, 69, 0.1);
}

.cart-five.bg-blue-soft {
    border-right: 3px solid rgba(17, 205, 239, 0.2);
    background: rgba(17, 205, 239, 0.1);
}

.cart-five.bg-error-soft {
    border-right: 3px solid rgba(244, 67, 54, 0.2);
    background: rgba(244, 67, 54, 0.1);
}

.cart-five .cart-title {
    color: var(--heading-color-two);
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .cart-five .cart-title {
        font-size: 18px;
    }
}

.cart-five .cartCap,
.cart-five .pera {
    color: var(--heading-color-two);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d4d4d4;
}

.cart-five .cartCap .countPersent,
.cart-five .pera .countPersent {
    color: #3cc13b;
    font-weight: 500;
}

.cart-five .pera {
    border: 0;
    margin: 0;
    padding: 0;
}

.cart-five .single-counter .counter,
.cart-five .single-counter .countPlus {
    font-size: 35px;
    color: #2b394f;
}

.cart-five .single-counter .countPlus {
    font-size: 35px;
}

.single-counter .counter,
.single-counter .countPlus {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

@media (max-width: 575px) {

    .single-counter .counter,
    .single-counter .countPlus {
        font-size: 30px;
    }
}

.single-counter .pera-count h5 {
    color: #131933;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 11px;
    font-family: var(--body-font);
}

.counts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-counter .pera-count .pera {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-counter .pera-count .pera {
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-counter .pera-count .pera {
        font-size: 17px;
    }
}

.progress-container.circle-progress-one .progress {
    width: 172px;
    height: 172px;
    line-height: 172px;
    background: none;
    margin: 0 auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
}

.progress-container.circle-progress-one .progress .browser-percent {
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.progress-container.circle-progress-one .progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 88px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater img {
    border-radius: 50%;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater {
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
}

.topbar-dropdown-menu .topbar-dropdown-content .topbar-dropdown-item .item-avater .item-badge.item-icon-badge {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    padding: 8px;
    background-color: var(--ot-primary);
    font-size: 13px;
}

/* Title */
.bradecrumb-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1;
    margin: 0;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item {
    color: var(--ot-primary-title);
}

.breadcrumb-item:first-child a {
    color: var(--ot-primary);
}

.breadcrumb-item a {
    color: var(--ot-primary) !important;
}

/*  */
.chart-card3 .ot-dropdown-btn {
    background: unset !important;
    border: 1px solid var(--ot-primary-title) !important;
    padding: 5px 13px;
    color: var(--ot-primary-title) !important;
    font-size: 12px;
    border-radius: 7px;
}

.profile-photo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.product-table-photo img {
    border-radius: 4px;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.component-page-heading h1 {
    margin-bottom: 20px;
}

.pricing-table-container {
    padding: 80px 80px;
}

.pricing-container {
    background: var(--ot-bg-secondary);
    padding: 80px 80px 20px 80px;
}

.simple-pricing-container {
    background: var(--ot-bg-secondary);
    padding: 80px 80px 80px 80px;
}

/* pricing-header  */
.pricing-container .pricing-header h1 {
    font-size: 40px;
}

.simple-pricing-container .pricing-header h1 {
    font-size: 40px;
}

.pricing-table-container .pricing-header h1 {
    font-size: 40px;
}

.pricing-container .pricing-table-body .pricing-list ul li .btn-container {
    padding: 2px;
}

.bootstrap-tagsinput .badge [data-role="remove"]::after {
    content: "Ã—";
    background-color: rgba(118, 118, 118, 0.1);
    width: 16px;
    height: 16px;
}

.bootstrap-tagsinput .badge [data-role="remove"]:hover::after {
    background-color: var(--ot-primary);
}

.bootstrap-tagsinput .badge {
    font-weight: 500;
}

.period .timeline-content {
    margin-left: 26px;
}

.timeline-centered .period .timeline-title {
    margin-left: 96px;
}

.timeline-split .period .timeline-title,
.timeline-centered .period .timeline-title {
    left: -18px;
}

.faq-card .ot-accordion-cust .accordion-item {
    border: 0;
}

.chart-card {
    height: 430px;
}

.ot-badge.primary {
    margin: 0 5px;
}

.component-page-heading h1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.component-page-heading h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--ot-primary-title);
}

.left-side {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.input-check-radio .form-check .form-check-input {
    margin-right: 5px;
}

.icon-container.ot-card .title {
    font-weight: 600;
    font-size: 25px;
}

hr {
    color: #cdcece;
}

.profile-content .profile-menu-body .nav-item {
    margin-bottom: 21px;
}

/* MAX_WIDTH */
.max_275 {
    max-width: 275px;
}

/* crm styles  */
.otPorject__wrapper {
    max-height: 420px;
    overflow-x: hidden;
}

.otProject_single {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 15px 13px;
    grid-gap: 10px;
}

.otProject_subText {
    border-radius: 8px;
}

.assigne_imgs {
    margin: 3px 0 0 6px;
}

.assigne_imgs .assigne_img {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--white);
    padding: 0.5px;
    margin-left: -6px;
    position: relative;
    z-index: 1;
}

.assigne_img.assingneCount {
    background: var(--ot-primary);
    border: 0.5px solid #ffffff;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: var(--white);
}

/* event style  */
.otEvent__wrapper .otEvent_single:not(:last-child) {
    margin-bottom: 34px;
}

.otEvent_singleSep {
    position: relative;
}

.otEvent_single {
    position: relative;
    min-height: 98px;
    padding: 0 0 0 24px;
}

.otEvent_single::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #15b974;
}

.otEvent_single.style2::before {
    background: #ffc63c;
}

.otEvent_single.style3::before {
    background: var(--ot-primary);
}

.otEvent_single.style4::before {
    background: #15b974;
}

.otEvent__wrapper h4 {
    margin-bottom: 10px;
    padding-right: 30px;
}

.otEvent_singleSep .icon {
    position: absolute;
    top: 0;
    right: 0;
}

/* datepicker  */
.ot__datePicker {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ot__datePicker .datepicker {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    width: 100%;
    padding: 0;
}

.ot__datePicker .datepicker--nav-action {
    width: 32px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--ot-primary) !important;
}

.ot__datePicker .datepicker--day-name {
    font-size: 20px;
    color: #afafaf;
}

.ot__datePicker .datepicker--nav-title {
    border-radius: 0;
    padding: 0;
    font-size: 20px;
    color: #3b3b3b;
}

.ot__datePicker .datepicker--nav-title i {
    color: #3b3b3b;
}

.ot__datePicker .datepicker--day-name {
    font-size: 16px;
    color: #6f767e;
    font-weight: 400;
    text-transform: capitalize;
}

.ot__datePicker .datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
    color: #afafaf;
}

.ot__datePicker .datepicker--nav {
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    min-height: 32px;
    padding: 0 0 15px 0;
    margin-bottom: 13px;
}

.ot__datePicker .datepicker--cell.-current- {
    color: var(--white);
    border-color: var(--ot-primary);
    background-color: var(--ot-primary);
    background: var(--ot-primary) !important;
}

.ot__datePicker .datepicker--cell.-selected-.-focus- {
    background-color: rgba(15, 106, 255, 0.8);
}

.ot__datePicker .datepicker--cell-day {
    width: 14.28571%;
    height: 45px;
}

.ot_heightFull {
    height: calc(100% - 24px);
}

.profile-content .profile-menu-body .nav-link::before {
    content: "";
    position: absolute;
    right: -3px;
    top: 0;
    background: var(--ot-primary);
    width: 3px;
    bottom: 0;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.profile-content .profile-menu-body .nav-link.active::before,
.profile-content .profile-menu-body .nav-link:hover::before {
    opacity: 1;
}

.role-table .serial {
    max-width: 50px;
    min-width: 100px;
}

/* NICE_SELECT_STYLE  */
.nice-select {
    border: 0;
    border-radius: 0px;
    padding-left: 0;
    padding-right: 30px;
    border: 1px solid var(--ot-primary-border) !important;
}

.nice-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.nice-select .current {
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nice-select .list {
    width: 100%;
    left: auto;
    right: 0;
    border-radius: 0px 0px 10px 10px;
    margin-top: 1px;
    z-index: 9999 !important;
}

.nice-select .list li {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.nice-select .list li:last-child {
    margin-bottom: 20px;
}

.nice-select .list li {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nice-select .list li:hover {
    color: var(--ot-primary-title);
}

.nice-select.tr-bg {
    background: transparent;
    border: 1px solid var(--ot-primary);
    border-radius: 31px;
    height: 30px;
    line-height: 28px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    padding: 0 36px 0px 30px;
}

.nice-select.tr-bg:after {
    color: var(--ot-primary);
    margin-top: -14px;
}

.nice-select.tr-bg.open:after {
    margin-top: 6px;
}

.nice-select.tr-bg .current {
    color: var(--ot-primary);
}

.nice-select.tr-bg .list {
    min-width: 180px;
}

.nice-select.tr-bg:hover {
    border: 1px solid transparent;
}

.nice-select.tr-bg:hover:after {
    color: #ffffff;
}

.nice-select.tr-bg:hover .current {
    color: #ffffff;
}

.nice-select.bordered_style {
    background: transparent;
    border-bottom: 1px solid rgba(130, 139, 178, 0.3);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    height: 48px;
    line-height: 48px;
    position: relative;
    padding: 0 12px;
    border-radius: 8px;
}

.nice-select.bordered_style .current {
    color: var(--ot-secondary-title);
    text-transform: capitalize;
    position: relative;
    bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background: rgba(224, 224, 224, 0.5019607843);
    color: var(--ot-primary-title);
}

.nice-select.open .nice-select-search-box {
    border-radius: 0;
}

.nice-select .list {
    padding: 55px 0 0;
}

.primary-btn {
    display: inline-block;
    color: #415094;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 40px;
    padding: 0px 20px;
    outline: none !important;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    border: 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.input-right-icon button {
    background: transparent;
    border: 0;
    display: inline-block;
    cursor: pointer;
    margin-left: -38px;
    position: relative;
    z-index: 999;
}

/* medaia query  */
@media (max-width: 991.98px) {
    .ot__datePicker .datepicker--nav-title {
        font-size: 16px;
    }
}

.table_height_450 {
    max-height: 450px;
}

.ot-pagination {
    grid-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ot-pagination .page-item {
    margin: 0;
}

.ot-pagination .pagination .page-item {
    margin-right: 0;
}

.ot-pagination .pagination {
    margin: 0;
    grid-gap: 10px;
}

.serch-sagetion {
    max-height: 350px;
    overflow: auto;
}

.cart-two .cartCaption {
    position: relative;
    z-index: 1223;
}

/* select2 */
.select2-container.custom-container {
    width: 200px !important;
}

.custom-container .select2-selection--single {
    min-height: 40px !important;
    border: 1px solid #21c6fb !important;
    padding-left: 25px !important;
}

.custom-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.custom-container .select2-selection__arrow i.las.la-angle-down {
    display: none;
}

.custom-container .select2-selection__arrow i.fa-solid {
    color: #21c6fb;
}

.custom-container .select2-selection--single .select2-selection__arrow {
    right: unset !important;
}

.select2-container .custom-container .select2-selection--single {
    border: 1px solid #21c6fb !important;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.custom-dropdown-select .select2-container {
    width: 100% !important;
}

.custom-dropdown-select .select2-selection__arrow {
    position: relative !important;
}

/* Multi Step Form */
.multi-step-form {
    border: 1px solid var(--ot-primary);
    padding: 20px 30px;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
}

.multi-step-form i {
    display: block;
    font-size: 30px;
    color: var(--ot-primary);
    margin-bottom: 10px;
}

.multi-step-form span {
    font-size: 18px;
    color: var(--ot-primary);
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 767.98px) {
    .otProject_single {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .pricing-table-container .pricing-header h1,
    .simple-pricing-container .pricing-header h1,
    .pricing-container .pricing-header h1 {
        font-size: 20px;
    }

    .bookmark ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .pricing-table-container,
    .simple-pricing-container {
        padding: 30px;
    }

    .pricing-container {
        padding: 30px;
    }
}

@media (min-width: 768px) {

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info {
        padding-right: 0;
        margin-left: 30px;
    }

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info {
        padding-right: 0;
        margin-left: 20px;
        display: inline-block;
    }
}

.select2-search__field {
    height: 40px;
    margin-bottom: 10px;
}

.error-show {
    display: inline-block;
}

.custom-text-decoration {
    text-decoration: underline;
}

.remember-checkbox.selected-quize .ot-checkmark {
    background: var(--ot-primary);
    border: var(--ot-primary);
}

.ot-textarea {
    margin-top: 0px;
    height: auto !important;
}

.tag-area3 .listing .single-list {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: inline-block;
    color: var(--body_text);
    background: var(--white);
    border: 1px solid #ddd;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 14px;
    margin-bottom: 10px;
    margin-right: 2px;
    cursor: pointer;
    border-radius: 8px;
}

.tag-area3 .listing .single-list:hover {
    background: var(--ot-primary);
    color: var(--white);
    border: 1px solid transparent;
}

.tagify--outside .tagify__input {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    border: 1px solid var(--ot-primary-border);
    margin-bottom: 1em;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    height: 49px;
    width: 100%;
    font-size: 16px;
    padding: 15px 14px;
    position: relative;
    border-radius: 8px;
    border-color: #f7f7f7;
    background: #f7f7f7;
    line-height: 18px;
}

.tagify--outside .tagify__input {
    background: none !important;
    color: var(--ot-primary-title);
    height: 49px;
    width: 100%;
    font-size: 16px;
    padding: 11px 14px 15px 14px;
    border-radius: 8px;
    border: 1px solid var(--ot-primary-border) !important;
}

.theme_dropdown .btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--ot-primary-border);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: var(--ot-primary-title);
}

/* link Web */
.theme_dropdown .btn.link-web {
    width: 80px;
}

.theme_dropdown .btn:hover {
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
}

.theme_dropdown .btn:focus {
    background: none;
}

.theme_dropdown .theme_list {
    font-size: 14px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 5px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.theme_dropdown .theme_list i {
    font-size: 20px;
}

.theme_dropdown .theme_list:hover {
    color: var(--ot-primary) !important;
}

.profile-expand-dropdown .profile-expand-container .profile-expand-list form {
    width: 100%;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--ot-primary-title) !important;
    text-decoration: none;
    background: none;
}

.theme_dropdown .theme_list {
    font-size: 14px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 5px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.h-calc {
    height: 100%;
}

.dashboard-card-icon i {
    font-size: 24px;
}

/* icon */
.circle-violet {
    background: rgba(194, 183, 252, 0.1);
}

.circle-violet i {
    color: rgba(108, 99, 255, 0.7882352941);
}

.circle-brown {
    background: rgba(254, 179, 145, 0.1);
}

.circle-brown i {
    color: rgba(244, 164, 96, 0.768627451);
}

.circle-success {
    background: rgba(123, 183, 105, 0.1);
}

.circle-success i {
    color: #7ab668;
}

.circle-primary {
    background: rgba(0, 160, 255, 0.1);
}

.circle-primary i {
    color: #00a0ff;
}

.circle-warning {
    background: rgba(255, 193, 7, 0.1);
}

.circle-warning i {
    color: #ffc107;
}

.circle-lightseagreen {
    background: rgba(0, 255, 255, 0.1);
}

.circle-lightseagreen i {
    color: #20b2aa;
}

.circle-blue {
    background: rgba(0, 112, 255, 0.1);
}

.circle-blue i {
    color: #0070ff;
}

.circle-danger {
    background: rgba(255, 0, 0, 0.1);
}

.circle-danger i {
    color: #ff0000;
}

.circle-hotpink {
    background: rgba(255, 105, 180, 0.1);
}

.circle-hotpink i {
    color: #ff69b4;
}

.arrow-toggle-btn {
    font-size: 18px;
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 8px;
    line-height: 30px;
    color: var(--ot-primary-title);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(217, 219, 228, 0.6) !important;
}

.arrow-toggle-btn:hover {
    background: var(--ot-primary);
    color: var(--white);
    border: 1px solid transparent !important;
}

.select2-container--open .select2-dropdown {
    left: 0;
    min-width: 130px;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    padding-bottom: 1rem;
    background-color: var(--white);
    padding-bottom: 0;
    border: 0 !important;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.select2-container .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--ot-primary-border) !important;
    color: var(--ot-primary-title) !important;
    height: 40px;
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: 0 !important;
}

.select2-container .select2-dropdown .select2-search .select2-search__field {
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: 0 !important;
}

.select2-container .select2-dropdown .select2-results__option {
    max-height: 250px;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 8px 10px;
    font-size: 13px;
}

.select2-container .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container .select2-results__option--selected {
    background-color: #f4f6fa !important;
    color: var(--ot-primary) !important;
}

.select2-results__option--selectable {
    font-size: 14px;
    font-weight: 500;
    color: #687083;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 30px;
    text-transform: capitalize;
    padding-left: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 0 0 8px 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -12px;
    margin-top: 2px;
    border-color: #bdbdbd transparent transparent transparent;
}

.ot-contact-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -12px;
    margin-top: -11px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #b3b3b3 transparent;
}

.page-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
}

.text-primary {
    color: var(--ot-primary);
}

.text-secondary {
    color: var(--ot-secondary);
}

.text-title {
    color: var(--ot-primary-title);
}

.text-peragraph {
    color: var(--ot-primary-paragraph);
}

.list-group .list-group-item .title {
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--ot-secondary-title);
}

.swal2-popup.swal2-toast {
    width: auto;
}

.swal2-popup {
    width: auto !important;
}

/* body.swal2-toast-shown .swal2-container {
	width:auto !important;
} */
/* Ai CSS start */
.main {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 600px;
    min-height: 600px;
    background-color: var(--panel-bg);
    background-color: rgba(var(--ot-primary-rgb), 0.05);
    border-radius: 4px;
    border: 1px solid var(--ot-secondary-border);
}

body.dark-theme .main {
    background: var(--body);
}

.main__left {
    -webkit-box-flex: 0.7;
    -ms-flex: 0.7;
    flex: 0.7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.options {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--main-darklg);
}

.options__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.options__right {
    margin-left: auto;
}

.options__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--ot-primary);
    height: 50px;
    border-radius: 5px;
    color: var(--white);
    font-size: 1.2rem;
    width: 50px;
    margin: 0 0.5rem;
    margin-right: 0;
}

.options__button i {
    color: var(--white);
    font-size: 20px;
}

.background__red {
    background-color: #f6484a;
}

.main__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0.3;
    -ms-flex: 0.3;
    flex: 0.3;
    width: 100%;
}

.main__chat_window {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: scroll;
}

.main__chat_window::-webkit-scrollbar {
    display: none;
}

.main__message_container {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
}

.main__message_container>input {
    height: 50px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 1rem;
    border-radius: 5px;
    padding: 0 20px;
    border: 1px solid var(--ot-secondary-border);
    width: 100%;
}

.main__message_container>input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--ot-primary-border);
}

.messages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px;
}

.message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: none;
    padding: 0;
    width: 100%;
}

@media (max-width: 992px) {
    .main {
        max-height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 700px) {
    .main__left {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .messages {
        margin: 0;
    }

    #showChat {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.messages .sent {
    background: var(--ot-primary);
    border-radius: 15px 0px 5px 5px;
    float: right;
    color: var(--white);
}

.sent {
    padding: 7px 16px;
    margin: 6px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: end;
    align-self: flex-end;
    list-style: none;
}

.message {
    background-color: var(--white);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.main__right {
    top: 20px;
    position: relative;
    min-width: 100%;
    scroll-behavior: smooth;
    overflow: scroll;
}

/* reply message ai */
.ai-reply-message {
    margin-left: 25px;
}

.ai-reply-message .ai-message-list .ai-reply {
    border-radius: 0px 5px 15px 5px;
    padding: 3px 12px 6px 12px;
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--body_text);
    background: rgba(212, 212, 212, 0.8392156863);
    margin-right: 35px;
    position: relative;
}

/* End-of Ai CSS start */
/* Copy tex */
#copy-btn {
    background: none;
    border: 0;
    color: #a4a2a2;
    position: absolute;
    z-index: 9999999;
    top: 0;
    right: -31px;
    font-size: 20px;
    line-height: 1;
}

#error.invalid-feedback {
    display: inline-block;
}

/* End of ai chat */
/* Multi Step CSS */
.form-with-multistep {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
}

.multiStep-wrapper {
    padding-top: 40px;
    padding-bottom: 0px;
}

ul.step-list-wrapper.list-style-none {
    margin-left: 0;
    margin-right: 80px;
}

.border-bottom {
    border-bottom: 1px solid rgba(221, 221, 221, 0.2588235294);
}

.multiStep-footer .multiStep-footer-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px 10px;
}

.multiStep-footer .multiStep-footer-back {
    padding: 13px 30px;
    border-radius: 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--ot-primary) !important;
}

.multiStep-footer .multiStep-footer-next {
    border: 1px solid transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    padding: 13px 30px;
    border-radius: 8px;
    background: var(--ot-primary) !important;
}

.multiStep-footer .multiStep-footer-next:focus {
    color: #ffffff;
}

@-webkit-keyframes multiStepForm {
    from {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes multiStepForm {
    from {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .multiStep-wrapper .multiStep-wrapper-flex {
        display: -ms-grid;
        display: grid;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .multiStep-wrapper .multiStep-wrapper-left::before {
        display: none;
    }
}

.multiStep-wrapper .multiStep-wrapper-contents {
    display: none;
}

.multiStep-wrapper .multiStep-wrapper-contents.active {
    display: block;
    -webkit-animation: multiStepForm 0.3s linear;
    animation: multiStepForm 0.3s linear;
    width: 100%;
}

.multiStep-wrapper .multiStep-wrapper-contents .multiStep-wrapper-contents-item:not(:last-child) {
    margin-bottom: 40px;
}

.multiStep-wrapper .multiStep-wrapper-contents .multiStep-wrapper-contents-item-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.step-list-wrapper .single-step-list-step {
    position: relative;
    padding-bottom: 40px;
    width: 150px;
    list-style: none;
}

.step-list-wrapper .single-step-list-step::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    top: 35px;
    background: #f3f3f3;
    z-index: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

/*
.step-list-wrapper .current-items.single-step-list-step::before {
    background: red !important;
} */
.step-list-wrapper .single-step-list-step.completed::before {
    background-color: #458cfd;
}

.step-list-wrapper .single-step-list-step:last-child::before {
    display: none;
}

.step-list-wrapper .single-step-list-step.completed .single-multiStep-request-list-item-number {
    color: #458cfd;
    border: 1px solid #458cfd;
}

.step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number {
    display: inline-block;
    position: relative;
    padding: 15px 0px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    width: 150px;
    height: 88px;
    overflow: hidden;
    background: var(--white);
}

.step-list-wrapper .single-multiStep-request-list-item-number.success {
    color: #4bb543;
    border: 1px solid #4bb543 !important;
}

.step-list-wrapper .single-multiStep-request-list-item-number.active {
    color: #458cfd;
    border: 1px solid #458cfd !important;
}

.step-list-wrapper .single-multiStep-request-list-item-number.active .single-wrap {
    color: #458cfd;
}

.step-list-wrapper .single-multiStep-request-list-item-number.danger {
    color: #ff3333;
    border: 1px solid #ff3333;
}

.step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number .single-wrap i {
    font-size: 24px;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.step-list-wrapper .single-multiStep-request-list-item-number.success .single-wrap {
    color: #4bb543 !important;
}

.step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number .single-wrap span {
    font-size: 16px;
    margin-bottom: 0px;
    display: block;
    text-transform: capitalize;
}

.account-multiStep-wrapper {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.account-multiStep-wrapper .multiStep-wrapper-contents {
    max-width: 100%;
}

.multiStep-form .cmn-btn1 {
    border-radius: 8px;
}

.w-48 {
    width: 48px;
}

.h-48 {
    height: 48px;
}

/* updated style  */
ul.step-list-wrapper.list-style-none {
    margin-left: 0;
    margin-right: 0;
    grid-gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.step-list-wrapper .single-step-list-step {
    padding-bottom: 0;
}

.step-list-wrapper .single-step-list-step::before {
    height: 1px;
    width: 100%;
    top: 50%;
    left: 100%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ddd;
}

/* 1400 screen */
@media only screen and (max-width: 1400px) {
    .step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number {
        padding: 10px 14px;
        width: 121px;
        height: 80px;
    }

    .step-list-wrapper.list-style-none {
        margin-left: 0;
        margin-right: 0;
    }

    .step-list-wrapper.list-style-none {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .step-list-wrapper .single-step-list-step {
        margin: 0;
        margin: 0 6px;
        width: auto !important;
    }

    .step-list-wrapper.list-style-none {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    ul.step-list-wrapper.list-style-none {
        margin-left: 0;
        margin-right: 0;
    }

    .border-left {
        border-right: 0;
        margin-right: 0;
        padding-right: 0;
    }

    .step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number .single-wrap span {
        font-size: 14px;
    }

    .step-list-wrapper.list-style-none {
        grid-gap: 15px;
    }
}

/* 576 Screen */
@media only screen and (max-width: 576px) {
    .step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number {
        padding: 10px 14px;
        width: 53px;
        height: 44px;
    }

    .step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number .single-wrap span {
        display: none;
    }

    .step-list-wrapper.list-style-none {
        margin-left: 0;
        margin-right: 0;
    }

    .step-list-wrapper.list-style-none {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .step-list-wrapper .single-step-list-step {
        margin: 0;
        margin: 0 6px;
        width: auto !important;
    }

    .step-list-wrapper.list-style-none {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    ul.step-list-wrapper.list-style-none {
        margin-left: 0;
        margin-right: 0;
    }

    .border-left {
        border-right: 0;
        margin-right: 0;
        padding-right: 0;
    }

    ul.step-list-wrapper.list-style-none {
        grid-gap: 10px;
    }
}

/* End of multi step */
.white-bg {
    background-color: var(--white);
}

.ot_fileUploader .ot-btn-primary:hover,
.ot_fileUploader .ot-btn-primary {
    border: 1px solid transparent;
    background: rgba(108, 117, 125, 0.6509803922) !important;
}

td input {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cke_chrome {
    border: 1px solid var(--ot-primary-border);
    border-radius: 8px 8px 0 0;
}

.cke_chrome .cke_top {
    border-bottom: 1px solid var(--ot-primary-border);
    border-radius: 8px 8px 0 0;
    background: #f9f9f9;
}

.cke_chrome .cke_inner {
    border-radius: 8px;
}

.cke_chrome {
    display: block;
    border: 1px solid var(--ot-primary-border);
    padding: 0;
}

.modal {
    background: rgba(105, 120, 160, 0.16);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.place-switch .switch-field label {
    padding: 13px 43px;
}

.timer-field {
    margin: 20px 0 0 0;
}

#toast-container .toast {
    background-color: #007bff !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

#toast-container .toast-success {
    background-color: #60c160 !important;
}

#toast-container .toast-error {
    background-color: #da4932 !important;
}

#toast-container .toast-info {
    background-color: #4d90fd !important;
}

#toast-container .toast-warning {
    background-color: #f69703 !important;
}

#toast-container .toast-message {
    font-size: 13px;
}

.swal2-container.swal2-center>.swal2-popup {
    border-radius: 8px;
}

.timeLIne_content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-title);
}

.timeLIne_content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-title);
}

.lead-creator {
    font-weight: 500;
    color: var(--ot-secondary-title);
}

.text-normal {
    white-space: normal !important;
    max-width: 200px !important;
}

._lead_nav {
    text-transform: capitalize;
}

.client_box .client_title {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -7px;
}

/*------------------------------------------------
                      POS_STYLE
  -------------------------------------------------*/
.pos-page .container-fluid {
    padding: 0 15px;
}

.statistics .user-activity .progress .progress-bar.bg-primary {
    background: var(--ot-primary) !important;
}

.statistics .user-activity .page-statistics strong {
    display: block;
    text-transform: uppercase;
    color: var(--ot-primary);
    font-size: 2em;
}

.gmpc {
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: var(--ot-primary) !important;
    border-right: 1px solid #eee;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: var(--ot-primary);
    border-color: var(--ot-primary);
}

.btn-outline-primary {
    color: var(--ot-primary);
    background-color: transparent;
    background-image: none;
    border-color: var(--ot-primary);
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--ot-primary);
    border-color: var(--ot-primary);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: var(--ot-primary);
    background-color: transparent;
}

.btn-outline-primary:not([disabled]):not(.disabled).active,
.btn-outline-primary:not([disabled]):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: var(--white);
    background-color: var(--ot-primary);
    border-color: var(--ot-primary);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 179, 90, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(51, 179, 90, 0.5);
}

.blockquote {
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    border-left: 5px solid var(--ot-primary);
}

.dataTable {
    margin-top: 30px;
}

.dataTables_length select {
    border-radius: 5px;
}

.table thead {
    background-color: #f3f2f7;
}

.dark-theme .table thead {
    background-color: #343d55;
}

.sendmail-form {
    display: inline-block;
}

#loader {
    position: fixed;
    left: 53%;
    top: 50%;
    z-index: 1;
    width: 50px;
    height: 50px;
    margin: -75px 0 0 -75px;
    border: 2px solid #d9d9db;
    border-radius: 50%;
    border-top: 2px solid var(--ot-primary);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

.count-title {
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 10px;
}

.dashboard-counts {
    padding: 10px 0;
}

.filter-toggle {
    float: right;
    list-style: none;
    margin-top: 15px;
}

.dark-theme .filter-toggle {
    opacity: 0.7;
}

.filter-toggle .date-btn {
    padding: 0.3rem 0.75rem;
    border-radius: 5px;
}

.filter-toggle .date-btn.active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.count-title .count-number {
    font-size: 1em;
}

.brand-img,
.category-img,
.delivery-link,
.product-img,
.product-link,
.purchase-link,
.quotation-link,
.return-link,
.sale-link,
.theme-option,
.transfer-link {
    cursor: pointer;
}

.bootstrap-select.form-control {
    border: 1px solid;
}

.bootstrap-select .btn-link {
    color: var(--ot-primary);
}

.dataTables_length .btn-default {
    padding: 0.27rem 0.75rem;
    padding-right: 25px;
}

.mce-panel {
    border: 1px solid #e4e6fc;
    border-radius: 5px;
}

.daterangepicker .custom-range-buttons button.apply-btn,
.daterangepicker .custom-range-buttons button.apply-btn:hover {
    background: var(--ot-primary);
}

div.ui-keyboard {
    position: fixed;
    z-index: 2000;
    top: auto !important;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.8);
}

.ui-keyboard-button {
    min-width: 3em;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
    background: var(--ot-primary);
    width: 300px;
    padding: 15px;
    position: absolute !important;
    z-index: 999;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front li.ui-menu-item {
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    list-style: none;
    padding: 5px 10px;
    padding-left: 0;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front li.ui-menu-item:hover {
    opacity: 0.7;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

p.top-border {
    border-top: 1px solid #000;
    width: 50%;
}

th span.number-in-words {
    text-transform: uppercase;
}

@media print {
    .hide-element {
        display: none;
    }
}

.dataTables_wrapper label .bootstrap-select {
    max-width: 70px;
}

.table:not(.permission-table) thead th {
    border-bottom: none;
    border-top: none;
}

.dark-theme .table td {
    border-color: #3b4253 !important;
}

.table:not(.permission-table) tr:last-child td {
    border-bottom: none;
}

table.dataTable {
    background-color: var(--white);
    border-collapse: collapse !important;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
}

table.dataTable img {
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    max-height: 60px;
    max-width: 60px;
}

.dark-theme table.dataTable,
.dark-theme table.table {
    background-color: #283046;
    color: #d0d2d6;
}

table.dataTable.no-shadow {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table thead th {
    border-bottom: 1px solid #e4e6fc;
    font-weight: 600;
}

.side-navbar .brand-big {
    line-height: 60px;
}

.side-navbar .brand-big i {
    font-size: 26px;
    vertical-align: middle;
}

.side-navbar li a {
    padding: 5px 10px;
}

.side-navbar li a i {
    vertical-align: middle;
}

.side-navbar li ul.collapse a:hover {
    padding-left: 15px;
}

nav.navbar a.menu-btn {
    background: 0 0;
    border: 1px solid var(--ot-primary);
    border-radius: 5px;
    color: var(--ot-primary);
}

.dark-theme nav.navbar a.menu-btn {
    border: 1px solid #7c70f4;
    color: #7c70f4;
}

nav.navbar a.menu-btn:hover {
    background: var(--ot-primary);
    border: 1px solid var(--ot-primary);
    color: var(--white);
}

.navbar-brand {
    padding: 0;
}

.role-permisssion-control tr {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #e1e3ea;
}

.brand-text h3 {
    color: var(--ot-primary);
    font-weight: 300;
}

.brand-text h3 span {
    font-weight: 500;
}

.dataTables_wrapper {
    margin-top: 30px;
}

.dataTables_filter,
.dataTables_length,
.dt-buttons {
    float: left;
    vertical-align: middle;
    width: 30%;
}

.dt-buttons {
    display: inline-block;
    text-align: right;
    width: 40%;
}

.dt-buttons .buttons-delete {
    line-height: 1;
}

.dt-buttons button {
    padding: 0.25rem 0.75rem;
}

.dt-buttons button span {
    color: var(--white);
}

.buttons-pdf {
    background: #ff7588;
    border: none;
}

.buttons-csv {
    background: #ffc107;
    border: none;
}

.buttons-print {
    background: #2196f3;
    border: none;
}

.buttons-delete {
    background: #eb543a;
    border: none;
}

.buttons-collection {
    background: var(--ot-primary);
    border: none;
}

.dataTables_info,
.dataTables_paginate {
    display: table-cell;
    width: 50%;
}

.dataTables_paginate {
    text-align: right;
}

.table.totals tr td {
    vertical-align: middle;
}

.table.order-list tr td .btn-link,
.table.totals tr td .btn-link {
    color: var(--ot-primary);
}

#product-table_wrapper.dataTables_wrapper {
    margin-top: 0;
    padding: 0;
}

table#product-table.dataTable {
    border-collapse: separate !important;
    margin: 15px 0 !important;
}

#product-table_paginate {
    float: right;
}

#product-table tr:last-child td:hover {
    border-bottom: 1px solid var(--ot-primary);
}

#product-table_paginate .page-link {
    line-height: 1;
}

#product-table td {
    border: none;
    border-right: 1px solid #e4e6fc;
    border-bottom: 1px solid #e4e6fc;
}

#product-table tr td:first-child {
    border-left: 1px solid #e4e6fc;
}

#product-table tr:first-child td {
    border-top: 1px solid #e4e6fc;
}

#product-table td:hover {
    border: 1px solid var(--ot-primary);
    color: var(--ot-primary);
}

#product-table tr:first-child td:hover {
    border-top: 1px solid var(--ot-primary);
}

#product-table tr td:first-child:hover {
    border-left: 1px solid var(--ot-primary);
}

#product-table td p {
    margin: 15px 0 0;
}

#product-table td:hover p {
    color: var(--ot-primary);
}

.product-img {
    margin-bottom: 0;
    padding: 15px 7px 0;
    text-align: center;
    text-transform: capitalize;
    width: 20%;
}

.brand-img img,
.category-img img,
.product-img img {
    height: 70px;
    max-width: 100%;
    width: auto;
}

.brand-img,
.category-img {
    text-transform: capitalize;
}

section.pos-section {
    padding: 5px 0;
    position: relative;
}

.pos-page .table-fixed {
    margin-bottom: 0;
}

.transaction-list {
    height: 43vh;
    overflow-y: auto;
    width: 100%;
}

.btn-default.minus,
.btn-default.minus:focus,
.btn-default.plus,
.btn-default.plus:focus {
    background-color: #d6deff;
    border: none;
}

.form-control.qty {
    border: none;
    font-size: 0.9em;
}

@media all and (min-width: 768px) {

    .table-fixed tbody,
    .table-fixed td,
    .table-fixed th,
    .table-fixed thead,
    .table-fixed tr {
        display: block;
    }

    .table-fixed tr {
        clear: both;
    }

    .table-fixed tbody td,
    .table-fixed thead>tr>th {
        float: left;
        border-bottom-width: 0;
    }
}

.btn-custom {
    display: block;
    font-size: 15px;
    letter-spacing: 0.025em;
    line-height: 1.7;
    width: 100%;
    color: var(--white);
}

.btn-custom.lg {
    font-size: 18px;
    font-weight: 700;
}

.btn-custom.sm {
    line-height: 18px;
    font-size: 15px;
    margin-bottom: 5px;
}

.minus,
.plus {
    padding: 0.35rem 0.75rem;
}

.numkey.qty {
    padding: 0 0.75rem;
    max-width: 50px;
    text-align: center;
}

.pos-text {
    line-height: 1.8;
}

.product-title {
    text-transform: capitalize;
}

.dataTables_info,
.dataTables_paginate {
    display: table-cell;
    width: 50%;
    float: left;
    padding-top: 10px;
}

.pos-page section header {
    padding: 0 0 15px;
}

.pos .bootstrap-select button {
    padding-right: 21px !important;
}

.pos .bootstrap-select.form-control:not([class*="col-"]) {
    width: 100px;
}

#myTable .input-group {
    max-width: 150px;
}

.filter-window {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    overflow-y: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    display: none;
}

.datepicker.datepicker-dropdown {
    padding: 15px;
}

.checkbox label {
    cursor: pointer;
    vertical-align: top;
}

.checkbox label:before {
    background-color: transparent;
}

.checkbox label::after {
    color: var(--ot-primary);
}

table.dataTable tbody>tr.selected,
table.dataTable tbody>tr>.selected {
    background-color: #f5f5f5;
}

table.dataTable tbody>tr.selected td,
table.dataTable tbody>tr>.selected td {
    color: #666;
}

.report-permissions span {
    display: inline-block;
    min-width: 200px;
}

.logo-container {
    width: 100px;
}

.logo-container>img {
    width: 100%;
}

.main-container {
    margin-top: 65px;
}

.form-container {
    max-width: 600px;
    margin: 10px auto;
}

.form-container h1 {
    font-weight: 300;
    font-size: 2.5rem;
}

.dropzone {
    border: 1px solid #e4e6fc;
    border-radius: 5px;
    background: var(--white);
}

#imageUpload {
    margin-bottom: 0;
    min-height: 80px;
}

div.has-error>input {
    border: 1px solid #dc3545;
}

div.has-error>.form-text {
    color: #dc3545;
}

#success-text {
    margin-top: 20px;
    font-size: 1.2rem;
}

.dripicons-question {
    color: var(--ot-primary);
}

.modal {
    background-color: rgba(255, 255, 255, 0.4);
}

.modal-header {
    border-bottom: 1px solid var(--ot-primary-border);
}

.totals .col-sm-4 {
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
    line-height: 2;
}

.totals .col-sm-4:nth-child(4),
.totals .col-sm-4:nth-child(5),
.totals .col-sm-4:nth-child(6) {
    border-bottom: none;
}

.payment-amount {
    background-color: #d6deff;
    margin-top: 10px;
    text-align: center;
}

.payment-amount {
    color: var(--ot-primary);
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 0;
    padding: 15px;
    text-transform: capitalize;
    border-radius: 8px;
}

.payment-amount h2 {
    margin: 0;
}

.totals .totals-title {
    color: var(--ot-primary-title);
    display: inline-block;
    width: 100px;
    margin: 4px 0;
}

.pos-page .order-list .btn {
    padding: 2px 5px;
}

table.dataTable tbody td.dt-checkboxes-cell {
    vertical-align: middle;
}

.pos-page [class*="col-"] {
    padding: 0 10px;
}

.pos-page #myTable [class*="col-"] {
    padding: 0.75rem;
}

.table-container {
    height: 75vh;
    overflow-y: auto;
}

@media all and (max-width: 1023px) {
    nav.navbar {
        padding: 0 10px;
    }

    .btn-pos {
        border: none;
        line-height: 60px !important;
        padding: 0 3px !important;
    }

    .place-switch .switch-field label {
        padding: 13px 18px;
    }

    .dataTables_filter,
    .dataTables_length,
    .dt-buttons {
        float: none;
        text-align: center;
        width: 100%;
    }

    .brand-big {
        text-align: left;
        padding-left: 20px;
    }

    .side-navbar .close {
        position: absolute;
        top: 20px;
        right: 5px;
        content: "X";
    }
}

.tagsinput,
.tagsinput * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tagsinput {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: var(--white);
    font-family: sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #556270;
    padding: 5px 5px 0;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
}

.tagsinput.focus {
    border-color: #ccc;
}

.tagsinput .tag {
    position: relative;
    background: #556270;
    display: block;
    max-width: 100%;
    word-wrap: break-word;
    color: var(--white);
    padding: 5px 30px 5px 5px;
    border-radius: 2px;
    margin: 0 5px 5px 0;
}

.tagsinput .tag .tag-remove {
    position: absolute;
    background: 0 0;
    display: block;
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    color: #ff6b6b;
    line-height: 30px;
    padding: 0;
    border: 0;
}

.tagsinput .tag .tag-remove:after,
.tagsinput .tag .tag-remove:before {
    background: #ff6b6b;
    position: absolute;
    display: block;
    width: 10px;
    height: 2px;
    top: 14px;
    left: 10px;
    content: "";
}

.tagsinput .tag .tag-remove:before {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.tagsinput .tag .tag-remove:after {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.tagsinput div {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.tagsinput div input {
    background: 0 0;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
    border: 0;
    margin: 0 5px 5px 0;
}

.tagsinput div input.error {
    color: #ff6b6b;
}

.tagsinput div input::-ms-clear {
    display: none;
}

.tagsinput div input::-webkit-input-placeholder {
    color: #ccc;
    opacity: 1;
}

.tagsinput div input:-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

.tagsinput div input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

.tagsinput div input:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}

.pos_edit_btn {
    width: 25px;
    height: 25px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--ot-primary);
    background: var(--body-bg);
}

.flex_item_fill {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
}

/* dropsone  */
@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.dropzone,
.dropzone * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.dropzone {
    min-height: 150px;
    border: 1px dashed #e1e3ea;
    background: var(--white);
    padding: 20px 20px;
}

.dropzone.dz-clickable {
    cursor: pointer;
}

.dropzone.dz-clickable * {
    cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
    cursor: pointer;
}

.dropzone.dz-started .dz-message {
    display: none;
}

.dropzone.dz-drag-hover {
    border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}

.dropzone .dz-message {
    text-align: center;
    margin: 2em 0;
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
}

.dropzone .dz-preview:hover {
    z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#eee),
            to(#ddd));
    background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
    background: var(--white);
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#666),
            to(#444));
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#be2626),
            to(#a92222));
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: var(--white);
}

.dropzone .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626;
}

.leads_datatable p {
    white-space: normal !important;
}

.empty_widget_inner .mCS_img_loaded {
    max-width: 120px;
    margin: 20px auto;
}

.empty_widget {
    min-height: 400px;
}

.invalid-feedback {
    display: block;
}

.dropzone .dz-preview.dz-image-preview {
    background: var(--ot-bg-primary);
    padding: 10px;
    border-radius: 8px;
}

.mce-btn {
    border: 1px solid var(--border_2);
    text-shadow: 0 1px 1px var(--border_2);
    background: var(--input_bg);
}

.dashboard-first-character {
    font-size: 25px;
    background-image: radial-gradient(circle, #da0806, #da0806);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--white);
    -webkit-text-stroke: 4px transparent;
}

.symbol:has(.dashboard-first-character) {
    background-color: #f9f9f9;
}

.mce-menubar .mce-menubtn:hover,
.mce-menubar .mce-menubtn.mce-active,
.mce-menubar .mce-menubtn:focus {
    border-color: #2b2d35 !important;
    background: #2b2d35 !important;
}

.taskTable_compact .tbody td p {
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-toggle {
    font-size: 21px;
    color: var(--ot-primary-paragraph);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    background: none;
}

.select2-container .select2-selection--multiple {
    border: 1px solid var(--ot-primary-border) !important;
}

.ot_fileUploader .ot-btn-primary:hover,
.ot_fileUploader .ot-btn-primary {
    border: 1px solid transparent;
    background: rgba(108, 117, 125, 0.6509803922);
}

textarea.form-control,
textarea.ot_textarea,
textarea.ot_input {
    border: 1px solid var(--ot-primary-border) !important;
    color: var(--ot-primary-paragraph);
}

input#old_password::-webkit-input-placeholder {
    top: 4px;
    position: relative;
}

input#old_password::-moz-placeholder {
    top: 4px;
    position: relative;
}

input#old_password:-ms-input-placeholder {
    top: 4px;
    position: relative;
}

input#old_password::-ms-input-placeholder {
    top: 4px;
    position: relative;
}

input#old_password::placeholder {
    top: 4px;
    position: relative;
}

input#password::-webkit-input-placeholder {
    top: 4px;
    position: relative;
}

input#password::-moz-placeholder {
    top: 4px;
    position: relative;
}

input#password:-ms-input-placeholder {
    top: 4px;
    position: relative;
}

input#password::-ms-input-placeholder {
    top: 4px;
    position: relative;
}

input#password::placeholder {
    top: 4px;
    position: relative;
}

input#password_confirmation {
    top: 4px;
    position: relative;
}

/* End of Dark Mode */
.home-btn {
    font-size: 18px;
    color: var(--ot-primary-title);
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 8px;
    line-height: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(217, 219, 228, 0.6) !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 5px;
}

@media only screen and (max-width: 575px) {
    .home-btn {
        display: none;
    }
}

.btn-outline-primary:not([disabled]):not(.disabled).active,
.btn-outline-primary:not([disabled]):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--white);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--ot-primary);
}

.profile-menu .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--ot-secondary-title);
    background-color: unset;
    border-bottom: 2px solid var(--ot-primary);
    border-radius: 0;
}

.profile-menu-head .paragraph {
    color: #b5b5c3;
}

/* booking module  */
.color-box {
    height: 20px;
    width: 20px;
}

/* address tab button */
a.nav-link.address-link.active {
    background-color: var(--ot-primary);
    padding: 9.5px 15px;
    color: var(--white) !important;
    border-radius: 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 0;
}

.swal2-styled.swal2-confirm:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.swal2-title {
    font-size: 27px;
}

.swal2-html-container {
    font-size: 13px;
}

.swal2-popup.swal2-modal.swal2-icon-warning.swal2-show {
    padding: 10px 20px;
}

.list-group-flush>.list-group-item {
    border-style: dashed;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 0px;
    color: var(--bs-list-group-color);
    text-decoration: none;
    background-color: var(--bs-list-group-bg);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

/* Export BTN */
.export-btn {
    padding: 10px 17px;
    border: 1px solid var(--ot-primary);
    background: none;
    border-radius: 5px;
    display: block;
    text-align: center;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--ot-primary);
}

.form-control {
    border-radius: 8px;
}

.nav-pills .nav-link {
    color: var(--ot-secondary-title);
}

.btn-check:focus {
    color: var(--white);
    background-color: var(--ot-primary);
    border-color: unset;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-check:focus i {
    color: var(--white);
}

/* tagify custom styles */
.tagify {
    width: 100%;
}

.tagify-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-transform: capitalize;
    color: #494e5c;
    display: block;
    margin-bottom: 8px;
}

.tagify__tag {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

span.tagify__tag-text {
    font-size: 14px;
    padding: 0px 6px;
    color: var(--ot-secondary-title);
}

.tagify__tag__removeBtn::after {
    content: "Ã—";
    -webkit-transition: 0.3s, color 0s;
    transition: 0.3s, color 0s;
    position: absolute;
    left: 8px;
    font-size: 19px;
    color: var(--ot-secondary-title);
}

.tagify__tag>div::before {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid var(--ot-primary-border) !important;
}

.tagify__tag__removeBtn {
    font-size: 14px;
    margin-left: 6px;
    margin-right: 0;
    padding: 4px;
}

.tagify__tag>div {
    padding-left: 0;
}

.tagify--outside .tagify__input {
    margin: 10px 0;
}

.tagify--outside {
    border: 0;
}

.tagify--outside .tagify__input {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    border: 1px solid var(--tags-border-color);
    margin-bottom: 1em;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    height: 49px;
    width: 100%;
    font-size: 16px;
    padding: 15px 14px;
    position: relative;
    border-radius: 8px;
    border-color: #f7f7f7;
    background: #f7f7f7;
    line-height: 18px;
}

.tagify--outside .tagify__input:hover {
    border-color: var(--tags-hover-border-color);
}

.tagify--outside.tagify--focus .tagify__input {
    -webkit-transition: 0s;
    transition: 0s;
    border-color: var(--tags-focus-border-color);
}

.badge.badge-success {
    color: var(--white);
}

.btn-export {
    border-color: var(--ot-primary-border);
    background: var(--white);
    color: var(--ot-primary-title);
    font-weight: 500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 14px;
    padding: 10px 12px;
    line-height: 18px;
}

.btn-export i {
    color: var(--ot-primary);
    font-size: 14px;
    margin-right: 4px;
}

.btn-export:hover i {
    color: var(--white);
}

.tagify__tag:focus div::before,
.tagify__tag:hover:not([readonly]) div::before {
    --tag-bg-inset: unset;
    --tag-bg: unset;
}

.tagify__tag:focus div::before,
.tagify__tag:hover:not([readonly]) div::before {
    --tag-bg-inset: unset;
    --tag-bg: unset;
}

.tagify__tag__removeBtn:hover {
    background: unset;
}

.tagify__tag__removeBtn:hover+div::before {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Quize lsit s t a r t */
.quize-list {
    border: 1px solid var(--ot-secondary-border);
    padding: 22px 0;
    border-radius: 5px;
    list-style: none;
}

.quize-list .single-list-quize {
    color: var(--ot-tertiary-title);
    padding-left: 16px;
    list-style: none;
}

.quize-list .single-list-quize:not(:last-child) {
    margin-bottom: 19px;
    border-bottom: 1px solid var(--ot-secondary-border);
    padding-bottom: 18px;
}

.quize-list .single-list-quize .title {
    color: var(--ot-tertiary-title);
    font-size: 16px;
    display: block;
    margin-bottom: 0px;
    font-weight: 400;
}

.quize-list .single-list-quize .quize-date {
    font-size: 12px;
    margin-right: 20px;
}

.remember-checkbox.selected-quize.true .text-title {
    color: #3cc13b !important;
}

.remember-checkbox.selected-quize.false {
    text-decoration: line-through !important;
}

.remember-checkbox.selected-quize.false .text-title {
    color: var(--ot-tertiary) !important;
}

.remember-checkbox.selected-quize .ot-checkmark {
    background: var(--ot-tertiary);
    border: var(--ot-tertiary);
}

.remember-checkbox.selected-quize .ot-checkmark::after {
    display: block;
    left: 0;
    top: -2px;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.remember-checkbox.selected-quize label {
    pointer-events: auto !important;
    cursor: not-allowed !important;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    -moz-user-select: none;
    user-select: none;
    /* Standard syntax */
}

.ans-sheet .single-list-quize .remember-checkbox {
    pointer-events: none;
}

.remember-checkbox {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.remember-checkbox.quize .ot-checkbox:checked~.ot-checkmark {
    background-color: var(--ot-tertiary);
    border-color: var(--ot-tertiary);
}

.remember-checkbox.quize .ot-checkmark {
    border: 2px solid var(--ot-primary-border);
}

.remember-checkbox.show-ans .ot-checkmark {
    background: var(--ot-tertiary);
    border: var(--ot-tertiary);
}

.remember-checkbox.show-ans .ot-checkmark::after {
    display: block;
    left: 4px;
    top: -6px;
}

.remember-checkbox.show-ans label {
    pointer-events: auto !important;
    cursor: not-allowed !important;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    -moz-user-select: none;
    user-select: none;
    /* Standard syntax */
}

.remember-checkbox label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
}

.remember-checkbox label small {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    margin-left: 5px;
}

.remember-checkbox .ot-checkbox {
    margin-right: 10px;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.remember-checkbox .ot-checkbox:checked~.ot-checkmark {
    background-color: var(--ot-tertiary);
    border-color: var(--ot-tertiary);
}

.remember-checkbox .ot-checkbox:checked~.ot-checkmark::after {
    display: block;
}

.remember-checkbox .ot-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border: 2px solid var(--ot-tertiary);
    margin-right: 12px;
    border-radius: 4px;
}

.remember-checkbox .ot-checkmark::after {
    content: url("../images/courses/tick.png");
    position: absolute;
    left: 0;
    top: -3px;
    display: none;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.remember-checkbox .forget-section span {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: right;
    letter-spacing: 0.5px;
    color: var(--ot-tertiary);
}

/* End-of Check Box */
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Updated Scroll Bar  */
.sidebar_scrollbar_active .mCSB_container {
    margin-right: 0 !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: 6px;
    background-color: #eee !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 3px;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #ddd;
}

.mCSB_scrollTools {
    opacity: 0;
}

.mCSB_scrollTools {
    width: 4px;
}

/* Updated Scroll Bar  */
#lead-modal .title strong {
    margin-bottom: 8px;
    display: block;
}

.half-expand .header_control_left .half-expand-toggle i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -1px;
}

.ot_input,
.ot-form-control,
.select2-container .select2-selection--single,
.ot_input:focus,
.ot-form-control:focus {
    border: 1px solid var(--ot-primary-border) !important;
}

.header-control-item .select2-container .select2-selection--single {
    background-color: transparent !important;
}

.table_scrollbar_active {
    position: relative;
}

.table_scrollbar_active .mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-bottom: 10px;
}

.card_scroll_active .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
}

.card_scroll_active .mCSB_inside>.mCSB_container {
    margin-right: 6px;
}

.card_scroll_active .mCSB_scrollTools {
    right: 0px;
}

.card_scroll_active .mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.card_scroll_active .mCustomScrollBox {
    padding-right: 25px;
}

.card_scroll_active .card-body {
    max-height: 400px;
    padding-right: 0;
    position: relative;
}

.card_scroll_active {
    padding-right: 0 !important;
}

/* add-ons list s t a r t*/
.single-add-ons {
    padding: 15px;
    border: 1px solid var(--ot-border-table-card-header);
    background: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.single-add-ons:hover {
    border: 1px solid var(--ot-primary);
    -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.07);
}

.course-badge {
    color: var(--ot-primary-title);
    background: var(--white);
    padding: 2.5px 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}

.course-badge:hover {
    background: var(--ot-primary);
    color: var(--white);
}

.single-add-ons .single-add-ons-img .course-badge {
    left: 10px;
    top: 10px;
}

.single-add-ons .single-add-ons-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
}

.single-add-ons:hover .single-add-ons-img img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.course-carousel-wrapper .swiper-btn {
    width: 44px;
    height: 44px;
    background: var(--ot-tertiary);
    -webkit-box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.11);
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    top: 33%;
}

.single-add-ons .price {
    color: var(--ot-primary-title);
    font-size: 26px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
}

.single-add-ons .price .month {
    color: var(--ot-primary-title);
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    text-transform: capitalize;
}

.single-add-ons .select2-container--default .select2-selection--single {
    height: 40px;
}

.single-add-ons .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.single-add-ons .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--ot-primary-border);
}

/* End-of add-ons list */
.add-ons-area .card {
    background-color: var(--ot-bg-table-card);
    border: 1px solid transparent;
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    border-radius: 8px;
}

.add-ons-area .card .card-header {
    padding: 24px;
    border-bottom: 1px solid var(--ot-border-table-card-header);
    margin-bottom: 10px;
}

.in-active {
    background: none;
    border-radius: 8px;
    color: var(--ot-primary-title);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(217, 219, 228, 0.6) !important;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    padding: 15px 24px;
    display: inline-block;
}

.ck.ck-editor__main li {
    list-style: unset;
}

.form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
}

.filter-body-width {
    min-width: 300px;
}

.left-show {
    left: 100% !important;
}


@media (max-width: 600px) {
    .left-show {
        left: 0 !important;
    }

    .filter-body-width {
        min-width: 266px;
    }
}

.right-show {
    right: 100% !important;
}

@media (max-width: 575px) {
    .right-show {
        left: -89%;
    }
}

.modal-wrapper {
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    background-color: var(--white);
    border-radius: 0.3rem;
    padding: 20px;
    max-width: 300px;
    min-height: 100px;
    position: absolute;
    top: 90%;
    right: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.modal-wrapper.active {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.modal-wrapper .close-icon {
    right: 15px;
    z-index: 10;
    top: 15px;
    cursor: pointer;
    background: var(--ot-primary);
    color: #ffffff;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
    background-image: none;
    opacity: 1;
    border: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.modal-wrapper .close-icon:hover {
    background: #fd2f73;
    color: white;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.custom-overlay {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.custom-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}

@media (max-width: 575px) {
    .custom-modal-body .btn-primary-fill {
        padding: 10px 9px;
    }

    .custom-modal-body .btn-primary-outline {
        padding: 10px 20px;
    }
}

.custom-accordion {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
    padding-left: 30px;
}

@media (max-width: 575px) {
    .custom-accordion {
        padding-left: 0px;
    }
}

.custom-accordion .single-accordion {
    position: relative;
    padding: 0px 14px 16px 14px;
    width: 100%;
    height: auto;
    background-color: var(--white);
    margin: 0 auto 15px auto;
    border: 1px solid var(--ot-primary-border);
    border-radius: 5px;
    cursor: pointer;
}

.custom-accordion .single-accordion .course-section-title {
    color: var(--ot-tertiary-title);
    font-size: 18px;
    cursor: pointer;
    padding-right: 40px;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 14px;
}

.custom-accordion .single-accordion .course-section-title.active:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.custom-accordion .single-accordion .course-section-title:after {
    content: "\ea13";
    font-family: var(--remix-icon);
    position: absolute;
    right: 0px;
    top: 15px;
    color: var(--ot-tertiary-title);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}

.custom-accordion .single-accordion .accordion-body {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-top: 1px solid var(--ot-primary-border);
    padding: 16px 20px;
    margin-top: 15px;
}

@media (max-width: 575px) {
    .custom-accordion .single-accordion .accordion-body {
        padding-right: 0;
    }
}

.custom-accordion .single-accordion .accordion-body .listing {
    margin-left: 25px;
}

@media (max-width: 575px) {
    .custom-accordion .single-accordion .accordion-body .listing {
        margin-left: 0;
    }
}

.custom-accordion .single-accordion .accordion-body .listing .single-list {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
    text-transform: capitalize;
    list-style: decimal;
}

.custom-accordion .single-accordion .accordion-body .listing .single-list .component {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    text-transform: capitalize;
    display: block;
}

.custom-accordion .single-accordion .accordion-body .listing .single-list .component:first-child {
    margin-top: 14px;
}

.custom-accordion .single-accordion .accordion-body .listing .single-list .component i {
    color: var(--ot-tertiary);
    font-size: 16px;
    position: relative;
    top: 4px;
}

.custom-accordion .single-accordion .accordion-body .add-btn {
    color: var(--ot-primary);
    font-size: 16px;
    line-height: 1;
    padding: 2px;
    padding-top: 5px;
    display: block;
}

.custom-accordion .single-accordion .accordion-body .add-btn i {
    margin-right: 1px;
    position: relative;
    top: 3px;
    font-size: 18px;
}

.basic-table,
.ot-table-bg,
.table-color-col {
    width: 100%;
}

.basic-table thead th,
.ot-table-bg thead th,
.table-color-col thead th {
    height: 50px;
    border-bottom: 1px solid var(--ot-border-basic-table-thead);
    padding-left: 14px;
    color: var(--ot-primary-title);
    font-size: 14px;
    font-weight: 500;
    /* text-align: center; */
}

.basic-table thead th:first-child,
.ot-table-bg thead th:first-child,
.table-color-col thead th:first-child {
    border-radius: 10px 0 0 0;
}

table tbody tr:first-child td {
    margin-top: 11px;
}

.basic-table thead th:last-child,
.ot-table-bg thead th:last-child,
.table-color-col thead th:last-child {
    border-radius: 0 10px 0 0;
}

.basic-table tbody td,
.ot-table-bg tbody td,
.table-color-col tbody td {
    font-weight: 400;
    padding: 9px;
    font-size: 14px;
    height: 56px;
    color: var(--ot-primary-paragraph);
    margin-bottom: 9px;
    text-align: center;
}

.ot-table-bg th,
.ot-table-bg tr:nth-child(even) {
    background-color: var(--ot-bg-basic-table-tbody);
}

.basic-table.pagination-content .pagination,
.pagination-content.ot-table-bg .pagination,
.pagination-content.table-color-col .pagination {
    width: 368px;
}

.basic-table.pagination-content .pagination li,
.pagination-content.ot-table-bg .pagination li,
.pagination-content.table-color-col .pagination li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px;
    width: 32px;
    border: 1px solid #eaeaea;
    border-radius: 7px;
}

.basic-table.pagination-content .pagination li a,
.pagination-content.ot-table-bg .pagination li a,
.pagination-content.table-color-col .pagination li a {
    color: var(--ot-primary-title);
}

.basic-table.pagination-content .pagination li a i,
.pagination-content.ot-table-bg .pagination li a i,
.pagination-content.table-color-col .pagination li a i {
    color: var(--ot-primary-title);
}

.basic-table.pagination-content .pagination li:hover a,
.pagination-content.ot-table-bg .pagination li:hover a,
.pagination-content.table-color-col .pagination li:hover a {
    color: var(--ot-primary);
}

.basic-table.pagination-content .pagination li:hover,
.pagination-content.ot-table-bg .pagination li:hover,
.pagination-content.table-color-col .pagination li:hover {
    border-color: var(--ot-primary);
}

.selected {
    background: var(--ot-primary);
}

.selected>a {
    color: white !important;
}

.table-top-componet .left-component {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}

@media (max-width: 768px) {
    .table-top-componet .left-component {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.table-top-componet .right-component a {
    float: right;
}

@media (max-width: 768px) {
    .table-top-componet .right-component a {
        float: left;
        margin-top: 20px;
    }
}

.basic-table tbody td,
.ot-table-bg tbody td,
.table-color-col tbody td {
    min-width: 120px;
}

/* Datatable */
.table-content .table-toolbar {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #000000;
}

.table-content .table-toolbar .form-select {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: var(--ot-primary-title);
    width: auto;
    padding: 10px 30px 10px 14px;
    border: 1px solid var(--ot-border-table-toolbar-per-page);
    border-radius: 5px;
    background-image: url("../images/basic-datatable/show/down-icon.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--ot-bg-table-toolbar-per-page);
}

.table-content .table-toolbar .btn-add {
    text-decoration: none;
    padding: 14px 17px;
    border: 1px solid transparent;
    background: var(--ot-primary);
    border-radius: 5px;
    display: block;
    text-align: center;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #ffffff;
    text-transform: capitalize;
}

.table-content .table-toolbar .btn-daterange,
.table-content .table-toolbar .dropdown-designation .btn-designation,
.table-content .table-toolbar .dropdown-export .btn-export {
    background-image: var(--ot-primary), var(--ot-primary);
    background-origin: border-box;
    background-clip: content-box, border-box;
    -webkit-box-shadow: 2px 1000px 1px var(--ot-bg-table-toolbar-btn-outline-primary) inset;
    box-shadow: 2px 1000px 1px var(--ot-bg-table-toolbar-btn-outline-primary) inset;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--ot-primary-title);
    border: 1px solid transparent;
    padding: 10px 12px;
    border-radius: 5px;
    -webkit-transition: all ease-in-out 0.1s;
    transition: all ease-in-out 0.1s;
}

.table-content .table-toolbar .btn-daterange .icon,
.table-content .table-toolbar .dropdown-designation .btn-designation .icon,
.table-content .table-toolbar .dropdown-export .btn-export .icon {
    color: #21c6fb;
    font-size: 14px;
}

.table-content .table-toolbar .btn-daterange:hover,
.table-content .table-toolbar .dropdown-designation .btn-designation:hover,
.table-content .table-toolbar .dropdown-export .btn-export:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--ot-primary);
    color: #ffffff;
}

.table-content .table-toolbar .btn-daterange:hover .icon,
.table-content .table-toolbar .dropdown-designation .btn-designation:hover .icon,
.table-content .table-toolbar .dropdown-export .btn-export:hover .icon {
    color: #ffffff;
}

.table-content .table-toolbar .btn-daterange:focus,
.table-content .table-toolbar .dropdown-designation .btn-designation:focus,
.table-content .table-toolbar .dropdown-export .btn-export:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--ot-primary);
    color: #ffffff;
}

.table-content .table-toolbar .btn-daterange:focus .icon,
.table-content .table-toolbar .dropdown-designation .btn-designation:focus .icon,
.table-content .table-toolbar .dropdown-export .btn-export:focus .icon {
    color: #ffffff;
}

.table-content .table-toolbar .search-box {
    position: relative;
    border: 1px solid var(--ot-border-table-toolbar-search);
    border-radius: 5px;
}

.table-content .table-toolbar .search-box .form-control,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select {
    padding: 8px 45px 8px 16px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--ot-bg-table-toolbar-search);
    color: var(--ot-primary-title);
    height: 48px;
}

.table-content .table-toolbar .search-box .form-control::-webkit-input-placeholder,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::-webkit-input-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .search-box .form-control::-moz-placeholder,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::-moz-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .search-box .form-control:-ms-input-placeholder,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select:-ms-input-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .search-box .form-control::-ms-input-placeholder,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::-ms-input-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .search-box .form-control::placeholder,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .search-box .icon {
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #6f767e;
}

.table-content .table-toolbar .dropdown-designation .search-content {
    padding: 20px;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box {
    position: relative;
    border: 1px solid #eaeaea;
    border-radius: 50px;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select {
    width: 232px;
    padding: 8px 45px 8px 16px;
    border: none;
    border-radius: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    color: #1a1d1f;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::-webkit-input-placeholder,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::-webkit-input-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::-moz-placeholder,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::-moz-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control:-ms-input-placeholder,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select:-ms-input-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::-ms-input-placeholder,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::-ms-input-placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::placeholder,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::placeholder,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .icon {
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #6f767e;
}

.table-content .table-toolbar .dropdown-designation .list {
    padding: 26px;
    margin: 0;
}

.table-content .table-toolbar .dropdown-designation .list .list-item {
    list-style: none;
    margin-bottom: 24px;
}

.table-content .table-toolbar .dropdown-designation .list .list-item:last-child {
    margin-bottom: 0;
}

.table-content .table-toolbar .dropdown-designation .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.table-content .table-toolbar .dropdown-designation .dropdown-item:hover {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-designation .dropdown-item:focus {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-designation .dropdown-item:active {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-designation .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.table-content .table-toolbar .dropdown-action .btn-dropdown {
    border: 1px solid var(--ot-border-table-toolbar-btn-action);
    width: 40px;
    height: 40px;
    background: var(--ot-bg-table-toolbar-btn-action);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    border-radius: 50px;
    color: var(--ot-primary);
    font-size: 16px;
}

.table-content .table-toolbar .dropdown-action .btn-dropdown:focus {
    background: var(--ot-primary);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    color: #ffffff;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    padding: 24px;
    margin-top: 10px !important;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 8px;
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    padding: 10px;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    background: #ffffff;
    padding: 10px 15px;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu li {
    margin-bottom: 20px;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.table-content .table-toolbar .dropdown-action .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #6f767e;
}

.table-content .table-toolbar .dropdown-action .dropdown-item:hover {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-action .dropdown-item:focus {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-action .dropdown-item:active {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-action .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.table-content .table-toolbar .dropdown-export .dropdown-menu {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    padding: 24px;
    margin-top: 10px !important;
}

.table-content .table-toolbar .dropdown-export .dropdown-menu li {
    margin-bottom: 20px;
}

.table-content .table-toolbar .dropdown-export .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.table-content .table-toolbar .dropdown-export .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #6f767e;
}

.table-content .table-toolbar .dropdown-export .dropdown-item:hover {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-export .dropdown-item:focus {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-export .dropdown-item:active {
    background-color: #ffffff;
}

.table-content .table-toolbar .dropdown-export .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.table-content.table-basic .card {
    background-color: var(--ot-bg-table-card);
    border: 1px solid transparent;
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
    border-radius: 8px;
}

.table-content.table-basic .card-body {
    padding: 40px 40px;
}

.table-content.table-basic .card-header {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--ot-primary-title);
    padding: 15px 40px;
    border-bottom: 1px solid var(--ot-border-table-card-header);
    background-color: var(--ot-bg-table-card-header);
    border-radius: 0;
}

.table-content.table-basic .table {
    border-color: var(--ot-border-table);
    vertical-align: middle;
    margin: 0;
    border-color: transparent;
}

.table-content.table-basic .table .sorting_asc,
.table-content.table-basic .table .sorting_desc {
    position: relative;
}

.table-content.table-basic .table .sorting_asc::before,
.table-content.table-basic .table .sorting_desc::before {
    position: absolute;
    left: auto;
    right: 16px;
    content: "\f106";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    top: 42%;
    color: var(--ot-color-table-icon-sorting-asc-up);
    cursor: pointer;
    -webkit-transform: translateY(-42%);
    transform: translateY(-42%);
}

.table-content.table-basic .table .sorting_asc::after,
.table-content.table-basic .table .sorting_desc::after {
    position: absolute;
    left: auto;
    right: 16px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    top: 62%;
    color: var(--ot-color-table-icon-sorting-asc-down);
    cursor: pointer;
    -webkit-transform: translateY(-62%);
    transform: translateY(-62%);
}

.table-content.table-basic .table .sorting_desc::before {
    color: var(--ot-color-table-icon-sorting-desc-up);
}

.table-content.table-basic .table .sorting_desc::after {
    color: var(--ot-color-table-icon-sorting-desc-down);
}

.table-content.table-basic .table .check-box .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid var(--ot-border-table-checkbox);
    background-color: var(--ot-bg-table-checkbox);
}

.table-content.table-basic .table .check-box .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table-content.table-basic .table .check-box .form-check-input:checked {
    background: url("../images/basic-datatable/check/ok.svg"), var(--ot-primary);
    background-repeat: no-repeat;
    background-position: center;
}

.table-content.table-basic .table .thead {
    background: transparent;
    border-bottom-color: var(--ot-border-table-thead);
}

.table-content.table-basic .table .thead tr th {
    padding: 0.75rem;
    padding-left: 0.75rem;
    border: 0;
    text-transform: uppercase;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    vertical-align: middle;
    white-space: nowrap;
    color: var(--ot-primary-title);
}

.table-content.table-basic .table .tbody tr:nth-of-type(odd) {
    background: var(--ot-bg-table-tbody);
}

.table-content.table-basic .table .tbody tr td {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
    color: var(--ot-primary-title);
    padding: 16px;
    vertical-align: middle;
    white-space: nowrap;
}

.table-content.table-basic .table .dropdown-action .btn-dropdown {
    border: 1px solid var(--ot-border-table-toolbar-btn-action);
    width: 28px;
    height: 28px;
    background: var(--ot-bg-table-toolbar-btn-action);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    border-radius: 50px;
    color: var(--ot-primary);
    font-size: 10px;
}

.table-content.table-basic .table .dropdown-action .btn-dropdown:focus {
    background: var(--ot-primary);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    color: #ffffff;
}

.table-content.table-basic .table .dropdown-action .dropdown-menu {
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    padding: 24px;
    margin-top: 10px !important;
}

.table-content.table-basic .table .dropdown-action .dropdown-menu li {
    margin-bottom: 20px;
}

.table-content.table-basic .table .dropdown-action .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.table-content.table-basic .table .dropdown-action .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #6f767e;
}

.table-content.table-basic .table .dropdown-action .dropdown-item:hover {
    background-color: #ffffff;
}

.table-content.table-basic .table .dropdown-action .dropdown-item:focus {
    background-color: #ffffff;
}

.table-content.table-basic .table .dropdown-action .dropdown-item:active {
    background-color: #ffffff;
}

.table-content.table-basic .table .dropdown-action .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.profile-table-content .table-toolbar {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #000000;
}

.profile-table-content .table-toolbar .form-select {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: var(--ot-primary-title);
    width: auto;
    padding: 10px 30px 10px 14px;
    border: 1px solid var(--ot-border-table-toolbar-per-page);
    border-radius: 5px;
    background-image: url("../images/basic-datatable/show/down-icon.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--ot-bg-table-toolbar-per-page);
}

.profile-table-content .table-toolbar .btn-add {
    text-decoration: none;
    padding: 10px 17px;
    background: var(--ot-primary);
    border-radius: 5px;
    display: block;
    text-align: center;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #ffffff;
}

.profile-table-content .table-toolbar .btn-daterange,
.profile-table-content .table-toolbar .dropdown-designation .btn-designation,
.profile-table-content .table-toolbar .dropdown-export .btn-export {
    background-image: var(--ot-primary), var(--ot-primary);
    background-origin: border-box;
    background-clip: content-box, border-box;
    -webkit-box-shadow: 2px 1000px 1px var(--ot-bg-table-toolbar-btn-outline-primary) inset;
    box-shadow: 2px 1000px 1px var(--ot-bg-table-toolbar-btn-outline-primary) inset;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--ot-primary-title);
    border: 1px solid transparent;
    padding: 10px 12px;
    border-radius: 5px;
    -webkit-transition: all ease-in-out 0.1s;
    transition: all ease-in-out 0.1s;
}

.profile-table-content .table-toolbar .btn-daterange .icon,
.profile-table-content .table-toolbar .dropdown-designation .btn-designation .icon,
.profile-table-content .table-toolbar .dropdown-export .btn-export .icon {
    color: #21c6fb;
    font-size: 14px;
}

.profile-table-content .table-toolbar .btn-daterange:hover,
.profile-table-content .table-toolbar .dropdown-designation .btn-designation:hover,
.profile-table-content .table-toolbar .dropdown-export .btn-export:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--ot-primary);
    color: #ffffff;
}

.profile-table-content .table-toolbar .btn-daterange:hover .icon,
.profile-table-content .table-toolbar .dropdown-designation .btn-designation:hover .icon,
.profile-table-content .table-toolbar .dropdown-export .btn-export:hover .icon {
    color: #ffffff;
}

.profile-table-content .table-toolbar .btn-daterange:focus,
.profile-table-content .table-toolbar .dropdown-designation .btn-designation:focus,
.profile-table-content .table-toolbar .dropdown-export .btn-export:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--ot-primary);
    color: #ffffff;
}

.profile-table-content .table-toolbar .btn-daterange:focus .icon,
.profile-table-content .table-toolbar .dropdown-designation .btn-designation:focus .icon,
.profile-table-content .table-toolbar .dropdown-export .btn-export:focus .icon {
    color: #ffffff;
}

.profile-table-content .table-toolbar .search-box {
    position: relative;
    border: 1px solid var(--ot-border-table-toolbar-search);
    border-radius: 5px;
}

.profile-table-content .table-toolbar .search-box .form-control,
.profile-table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .search-box .form-select {
    padding: 8px 45px 8px 16px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--ot-bg-table-toolbar-search);
    color: var(--ot-primary-title);
}

.profile-table-content .table-toolbar .search-box .form-control::-webkit-input-placeholder,
.profile-table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::-webkit-input-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .search-box .form-select::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .search-box .form-control::-moz-placeholder,
.profile-table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::-moz-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .search-box .form-select::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .search-box .form-control:-ms-input-placeholder,
.profile-table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select:-ms-input-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .search-box .form-select:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .search-box .form-control::-ms-input-placeholder,
.profile-table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::-ms-input-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .search-box .form-select::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .search-box .form-control::placeholder,
.profile-table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select::placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .search-box .form-select::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .search-box .icon {
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #6f767e;
}

.profile-table-content .table-toolbar .dropdown-designation .dropdown-menu {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    margin-top: 10px !important;
    padding: 0;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content {
    padding: 20px;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box {
    position: relative;
    border: 1px solid #eaeaea;
    border-radius: 50px;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control,
.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select {
    width: 232px;
    padding: 8px 45px 8px 16px;
    border: none;
    border-radius: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    color: #1a1d1f;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::-webkit-input-placeholder,
.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::-webkit-input-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::-webkit-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::-moz-placeholder,
.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::-moz-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::-moz-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control:-ms-input-placeholder,
.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select:-ms-input-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select:-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::-ms-input-placeholder,
.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::-ms-input-placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::-ms-input-placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control::placeholder,
.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select::placeholder,
.profile-content .profile-body-form .form-box .profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select::placeholder {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #b2bec3;
}

.profile-table-content .table-toolbar .dropdown-designation .search-content .search-box .icon {
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #6f767e;
}

.profile-table-content .table-toolbar .dropdown-designation .list {
    padding: 26px;
    margin: 0;
}

.profile-table-content .table-toolbar .dropdown-designation .list .list-item {
    list-style: none;
    margin-bottom: 24px;
}

.profile-table-content .table-toolbar .dropdown-designation .list .list-item:last-child {
    margin-bottom: 0;
}

.profile-table-content .table-toolbar .dropdown-designation .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #6f767e;
}

.profile-table-content .table-toolbar .dropdown-designation .dropdown-item:hover {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-designation .dropdown-item:focus {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-designation .dropdown-item:active {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-designation .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.profile-table-content .table-toolbar .dropdown-action .btn-dropdown {
    border: 0;
    width: 40px;
    height: 40px;
    background: var(--ot-bg-table-toolbar-btn-action);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    background: var(--ot-primary);
}

.profile-table-content .table-toolbar .dropdown-action .btn-dropdown:focus {
    background: var(--ot-primary);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    padding: 24px;
    margin-top: 10px !important;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 8px;
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    padding: 10px;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    background: #ffffff;
    padding: 10px 15px;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu li {
    margin-bottom: 7px;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #6f767e;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-item:hover {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-item:focus {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-item:active {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-menu {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    padding: 24px;
    margin-top: 10px !important;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-menu li {
    margin-bottom: 20px;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #6f767e;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item:hover {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item:focus {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item:active {
    background-color: #ffffff;
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.profile-table-content .table {
    border-color: var(--ot-border-table);
    vertical-align: middle;
    margin: 0;
}

.profile-table-content .table .sorting_asc,
.profile-table-content .table-content.table-basic .table .sorting_desc,
.table-content.table-basic .profile-table-content .table .sorting_desc,
.profile-table-content .table .sorting_desc {
    position: relative;
}

.profile-table-content .table .sorting_asc::before,
.profile-table-content .table-content.table-basic .table .sorting_desc::before,
.table-content.table-basic .profile-table-content .table .sorting_desc::before,
.profile-table-content .table .sorting_desc::before {
    position: absolute;
    left: auto;
    right: 16px;
    content: "\f106";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    top: 42%;
    color: var(--ot-color-table-icon-sorting-asc-up);
    cursor: pointer;
    -webkit-transform: translateY(-42%);
    transform: translateY(-42%);
}

.profile-table-content .table .sorting_asc::after,
.profile-table-content .table-content.table-basic .table .sorting_desc::after,
.table-content.table-basic .profile-table-content .table .sorting_desc::after,
.profile-table-content .table .sorting_desc::after {
    position: absolute;
    left: auto;
    right: 16px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    top: 62%;
    color: var(--ot-color-table-icon-sorting-asc-down);
    cursor: pointer;
    -webkit-transform: translateY(-62%);
    transform: translateY(-62%);
}

.profile-table-content .table .sorting_desc::before {
    color: var(--ot-color-table-icon-sorting-desc-up);
}

.profile-table-content .table .sorting_desc::after {
    color: var(--ot-color-table-icon-sorting-desc-down);
}

.profile-table-content .table .check-box .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid var(--ot-border-table-checkbox);
    background-color: var(--ot-bg-table-checkbox);
}

.profile-table-content .table .check-box .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.profile-table-content .table .check-box .form-check-input:checked {
    background: url("../images/basic-datatable/check/ok.svg"), var(--ot-primary);
    background-repeat: no-repeat;
    background-position: center;
}

.profile-table-content .table .thead {
    background: var(--ot-bg-table-thead);
    border-bottom-color: var(--ot-border-table-thead);
}

.profile-table-content .table .thead tr th {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: var(--ot-primary-title);
    padding: 16px 32px 16px 16px;
    vertical-align: middle;
    white-space: nowrap;
    border-color: var(--ot-border-table-thead);
}

.profile-table-content .table .tbody tr:nth-of-type(odd) {
    background: var(--ot-bg-table-tbody);
}

.profile-table-content .table .tbody tr td {
    font-family: var(--poppins);
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
    color: var(--ot-primary-title);
    padding: 16px;
    vertical-align: middle;
    white-space: nowrap;
}

.profile-table-content .table .dropdown-action .btn-dropdown {
    border: 1px solid var(--ot-border-table-toolbar-btn-action);
    width: 28px;
    height: 28px;
    background: var(--ot-bg-table-toolbar-btn-action);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    border-radius: 50px;
    color: var(--ot-primary);
    font-size: 10px;
}

.profile-table-content .table .dropdown-action .btn-dropdown:focus {
    background: var(--ot-primary);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    color: #ffffff;
}

.profile-table-content .table .dropdown-action .dropdown-menu {
    background: #ffffff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    padding: 16px;
    margin-top: 10px !important;
}

.profile-table-content .table .dropdown-action .dropdown-menu li {
    margin-bottom: 7px;
}

.profile-table-content .table .dropdown-action .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.profile-table-content .table .dropdown-action .dropdown-item {
    padding: 0 0;
    display: block;
    font-family: var(--poppins);
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #6f767e;
}

.profile-table-content .table .dropdown-action .dropdown-item:hover {
    background-color: #ffffff;
}

.profile-table-content .table .dropdown-action .dropdown-item:focus {
    background-color: #ffffff;
}

.profile-table-content .table .dropdown-action .dropdown-item:active {
    background-color: #ffffff;
}

.profile-table-content .table .dropdown-action .dropdown-item .icon {
    color: var(--ot-primary);
    font-size: 14px;
}

.profile-table-content .table .dropdown-action .btn-dropdown {
    background: var(--ot-primary);
    -webkit-box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    box-shadow: 1px 1px 8px rgba(16, 108, 255, 0.12);
    color: #ffffff;
}

.table-content.table-basic .table .dropdown-action .dropdown-item:hover {
    color: var(--ot-primary-title) !important;
    background-color: var(--ot-bg-secondary);
}

.dropdown-item:hover,
.table-content .table-toolbar .dropdown-export .dropdown-item:hover {
    color: var(--ot-primary-title);
    background: transparent;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu::before {
    background: var(--ot-bg-secondary);
    border: 1px solid var(--ot-border-table-toolbar-btn-action);
}

.table-content .table-toolbar .dropdown-action .dropdown-menu::after {
    background: var(--ot-bg-secondary);
}

.table-content .table-toolbar .dropdown-action .dropdown-item:hover {
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.table-content .table-toolbar .dropdown-designation .dropdown-item:hover {
    background-color: transparent;
    color: var(--text-color-one);
}

.table-content .table-toolbar .dropdown-export .dropdown-item:focus {
    background-color: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.table-content.table-basic .table .dropdown-action .dropdown-item:focus {
    background-color: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item:hover {
    background-color: transparent;
    color: var(--ot-primary-title);
}

.profile-table-content .table-toolbar .dropdown-export .dropdown-item:hover {
    background-color: transparent;
    color: var(--ot-primary-title);
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu::before {
    background: var(--ot-bg-secondary);
    border: 1px solid var(--ot-border-table-toolbar-btn-action);
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-menu::after {
    background: var(--ot-bg-secondary);
}

.profile-table-content .table-toolbar .dropdown-action .dropdown-item:hover {
    background: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

/* flug icon size  */
.table-content.table-basic .flag-icon {
    font-size: 22px;
}

.table-content.table-basic .table .dropdown-action .dropdown-item {
    line-height: 18px;
}

.table-content.table-basic .table .dropdown-action .dropdown-item i {
    font-size: 15px;
}

.table-content.table-basic .table .thead tr th,
.table-content.table-basic .table .tbody tr td {
    height: 45px;
}

.table.table-bordered tbody tr {
    border-color: inherit;
    border-width: inherit;
    border-style: inherit;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #e1e3ea;
}

.table-content.table-basic .table .thead tr {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #e1e3ea;
}

.table-content.table-basic .card-body,
.table-content.table-basic .card-header {
    padding: 24px;
}

.table-content.table-basic .table .dropdown-action .btn-dropdown {
    background: rgba(108, 117, 125, 0.6509803922);
    color: var(--white);
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table-content.table-basic .table .tbody tr td {
    font-size: 12px;
    padding: 6px 12px;
}

.table-content .table-toolbar .dropdown-action .btn-dropdown {
    color: var(--ot-primary);
    font-size: 16px;
    background: var(--ot-primary);
}

.table-content .table-toolbar .btn-daterange,
.table-content .table-toolbar .dropdown-designation .btn-designation,
.table-content .table-toolbar .dropdown-export .btn-export {
    background-image: unset;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--ot-primary-border);
    background: none;
}

.table-content .table-toolbar .search-box .form-control,
.table-content .table-toolbar .search-box .profile-content .profile-body-form .form-box .form-select,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .search-box .form-select {
    border: 1px solid var(--ot-primary-border);
}

.table-content .table-toolbar .form-select {
    border: 1px solid var(--ot-primary-border);
}

.table-content .table-toolbar .search-box {
    border: 0;
}

.table-content .table-toolbar .dropdown-action .dropdown-menu li {
    margin-bottom: 6px;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box .form-control,
.table-content .table-toolbar .dropdown-designation .search-content .search-box .profile-content .profile-body-form .form-box .form-select,
.profile-content .profile-body-form .form-box .table-content .table-toolbar .dropdown-designation .search-content .search-box .form-select {
    padding: 8px 34px 8px 16px;
    border-radius: 4px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: #ffffff;
    box-shadow: none;
    background: none;
    background: none !important;
    border: none !important;
}

.table-content .table-toolbar .dropdown-designation .search-content .search-box {
    border-radius: 8px;
}

.table-content .table-toolbar .dropdown-action .btn-dropdown {
    background: var(--ot-primary);
    color: var(--white);
}

.table-content.table-basic .table .tbody tr:nth-of-type(2n + 1) {
    background: transparent;
}

.table-content .table-toolbar {
    border-bottom: 1px solid var(--ot-primary-border);
    padding: 0 0 30px 0 !important;
    margin-bottom: 20px;
}

.ot-card .ot-invoice .table-responsive table thead tr th {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .table-responsive table tbody tr th {
    color: var(--ot-primary-title);
}

.ot-card .ot-invoice .table-responsive table tbody tr td {
    color: var(--ot-primary-title);
}

.ot-table tbody tr td {
    color: var(--ot-primary-title);
}

.ot-table tbody tr td strong {
    color: var(--ot-primary-title);
}

.height-500 {
    height: 500px;
}

.table-head-border thead tr {
    border-bottom: 1px solid var(--ot-primary-border);
    margin-bottom: 11px;
}

.table-td-border tbody tr {
    border-bottom: 1px solid var(--ot-primary-border);
}

.table-td-border tbody tr:last-child {
    border-bottom: 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 1px solid var(--ot-primary-border);
}

.daterangepicker select.monthselect {
    border: 1px solid transparent;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--ot-primary);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.daterangepicker {
    background-color: var(--white);
    border: 1px solid var(--ot-primary-border);
}

.daterangepicker select.yearselect {
    border: 1px solid transparent;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--ot-primary);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.daterangepicker .ranges li.active {
    background-color: var(--ot-primary);
    color: var(--white);
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--ot-primary);
}

.btn-primary {
    background-color: var(--ot-primary) !important;
    border-color: var(--ot-primary) !important;
}

.ot-contact-form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
    padding-right: 31px;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--ot-secondary-paragraph);
    font-weight: 400;
}

.ot-contact-input.single-date-picker {
    color: var(--ot-secondary-paragraph) !important;
}

/* Custom Input field */
.ot-input {
    line-height: 16px !important;
    height: 40px !important;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 18px !important;
    background: none;
    border-radius: 6px !important;
    border: 1px solid var(--ot-primary-border) !important;
    color: var(--ot-primary-paragraph);
}

.ot-input:focus {
    background-color: none;
}

.ot-input:focus-visible,
.ot-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border-color: var(--ot-primary-border);
}

.form-control:focus {
    background-color: unset;
}

.ot-input::-webkit-input-placeholder {
    color: var(--ot-secondary-paragraph);
    text-transform: capitalize;
}

.ot-input::-moz-placeholder {
    color: var(--ot-secondary-paragraph);
    text-transform: capitalize;
}

.ot-input:-ms-input-placeholder {
    color: var(--ot-secondary-paragraph);
    text-transform: capitalize;
}

.ot-input::-ms-input-placeholder {
    color: var(--ot-secondary-paragraph);
    text-transform: capitalize;
}

.ot-input::placeholder {
    color: var(--ot-secondary-paragraph);
    text-transform: capitalize;
}

label {
    display: inline-block;
    text-transform: capitalize;
}

.ot-contact-form .ot-contact-input {
    color: var(--ot-primary-title);
    height: 49px;
    width: 100%;
    font-size: 16px;
    padding: 11px 14px 11px 14px;
    position: relative;
    border-radius: 8px;
    background: none;
    border: 1px solid var(--ot-primary-border);
    text-transform: none;
}

.ot-contact-form .ot-contact-input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.ot-contact-form .ot-contact-input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.ot-contact-form .ot-contact-input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.ot-contact-form .ot-contact-input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.ot-contact-form .ot-contact-input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.ot-contact-form .icon {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #b1b5c3;
    font-size: 20px;
}

.ot-contact-form .ot-contact-textarea {
    color: var(--ot-primary-perragraph);
    width: 100%;
    font-size: 16px;
    padding: 15px 14px;
    position: relative;
    border-radius: 8px;
    background: none;
    border: 1px solid var(--ot-primary-border);
}

.ot-contact-form .ot-contact-textarea::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-perragraph);
}

.ot-contact-form .ot-contact-textarea::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-perragraph);
}

.ot-contact-form .ot-contact-textarea:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-perragraph);
}

.ot-contact-form .ot-contact-textarea::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-perragraph);
}

.ot-contact-form .ot-contact-textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--ot-primary-perragraph);
}

.ot-contact-form .ot-contact-label {
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--ot-primary-paragraph);
    margin-bottom: 8px;
}

.ot-contact-form .ot-contact-label i {
    position: relative;
    top: 4px;
}

.date-pic-icon {
    position: relative;
}

.date-pic-icon i {
    position: absolute;
    right: 11px;
    top: 50%;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--ot-secondary-paragraph);
    border-left: 1px solid var(--ot-primary-border);
    padding-left: 13px;
}

.search-style {
    position: relative;
}

.search-style.search-style2 {
    width: 208px;
}

.search-style.search-style2 .search-field {
    line-height: 16px !important;
    height: 35px !important;
    padding: 8px 18px !important;
    font-size: 14px;
    color: var(--ot-primary-paragraph);
}

.search-style.search-style2 .search-field::-webkit-input-placeholder {
    font-size: 14px;
}

.search-style.search-style2 .search-field::-moz-placeholder {
    font-size: 14px;
}

.search-style.search-style2 .search-field:-ms-input-placeholder {
    font-size: 14px;
}

.search-style.search-style2 .search-field::-ms-input-placeholder {
    font-size: 14px;
}

.search-style.search-style2 .search-field::placeholder {
    font-size: 14px;
}

.search-style.search-style2 .search-icon {
    font-size: 16px;
    color: var(--ot-secondary-paragraph);
}

.search-style .search-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--ot-secondary-paragraph);
}

.search-style .search-field {
    line-height: 16px !important;
    height: 40px !important;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 18px !important;
    background: none;
    border-radius: 6px !important;
    border: 1px solid var(--ot-primary-border);
    color: var(--ot-primary-paragraph);
}

.search-style .search-field::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-primary-paragraph);
}

.search-style .search-field::-moz-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-primary-paragraph);
}

.search-style .search-field:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-primary-paragraph);
}

.search-style .search-field::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-primary-paragraph);
}

.search-style .search-field::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--ot-primary-paragraph);
}

.search-style .search-field:focus-visible {
    outline-color: none;
}

.toggle-arro-hidden .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.drp-calendar.left.single {
    background: var(--white);
}

.ot_fileUploader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--ot-primary-border) !important;
    height: 42px;
    border-radius: 4px;
}

.ot_fileUploader input.form-control {
    border: 0 !important;
    border-radius: 3px;
    border: 0;
    height: 40px;
    width: 100%;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: none;
    color: var(--ot-primary-paragraph);
}

.ot_fileUploader input::-webkit-input-placeholder {
    font-size: 14px;
    color: var(--ot-primary-paragraph);
}

.ot_fileUploader input::-moz-placeholder {
    font-size: 14px;
    color: var(--ot-primary-paragraph);
}

.ot_fileUploader input:-ms-input-placeholder {
    font-size: 14px;
    color: var(--ot-primary-paragraph);
}

.ot_fileUploader input::-ms-input-placeholder {
    font-size: 14px;
    color: var(--ot-primary-paragraph);
}

.ot_fileUploader input::placeholder {
    font-size: 14px;
    color: var(--ot-primary-paragraph);
}

.ot_fileUploader button {
    background: transparent;
}

.ot_fileUploader .ot-btn-primary {
    padding: 10px 20px;
}

.input-check-radio .form-check .form-check-input,
.input-check-radio .form-check .form-check-label {
    cursor: pointer;
}

/* End-of Modal Close Button */
.card-title {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--ot-primary-title);
}

.switch-box3 {
    position: relative;
    display: inline-block;
}

.switch-box3 input {
    height: 33px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

.switch-box3 .toggle-item {
    width: 33px;
    background: var(--ot-primary);
    height: 21px;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: 20% center;
    transform-origin: 20% center;
    cursor: pointer;
    margin: 5px;
}

.switch-box3 .toggle-item:before {
    content: "";
    position: absolute;
    content: "";
    position: absolute;
    display: block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 2.3em;
    height: 2.3em;
    top: 5px;
    left: 0.25em;
    border-radius: 2em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.switch-box3 .toggle-item2 {
    width: 33px;
    background: var(--ot-primary);
    height: 21px;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: 20% center;
    transform-origin: 20% center;
    cursor: pointer;
    margin: 5px;
}

.switch-box3 .toggle-item2:before {
    content: "";
    position: absolute;
    content: "";
    position: absolute;
    display: block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 2.3em;
    height: 2.3em;
    top: 5px;
    left: 0.25em;
    border-radius: 2em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.switch-box3 .toggle-item3 {
    width: 33px;
    background: var(--ot-primary);
    height: 21px;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: 20% center;
    transform-origin: 20% center;
    cursor: pointer;
    margin: 5px;
}

.switch-box3 .toggle-item3:before {
    content: "";
    position: absolute;
    content: "";
    position: absolute;
    display: block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 2.3em;
    height: 2.3em;
    top: 5px;
    left: 0.25em;
    border-radius: 2em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.switch-box3.style-1 label {
    background: var(--ot-primary);
}

.switch-box3.style-1 label:before {
    content: "";
    position: absolute;
    border: none;
    width: 19px;
    height: 19px;
    background: #fff;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    top: 1px;
    left: 1px;
}

.switch-box3.style-1 label:after {
    content: "";
    position: absolute;
    background: transparent;
    height: calc(100% + 8px);
    border-radius: 30px;
    top: -5px;
    width: calc(100% + 8px);
    left: -4px;
    z-index: 0;
}

.switch-box3.style-1 input:checked+label {
    background: #4caf50;
}

.switch-box3.style-1 input:checked+label:before {
    left: 12px;
}

.switch-box3.style-2 label {
    background: var(--red);
}

.switch-box3.style-2 label:before {
    content: "";
    position: absolute;
    border: none;
    width: 19px;
    height: 19px;
    background: #fff;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    top: 1px;
    left: 1px;
}

.switch-box3.style-2 label:after {
    content: "";
    position: absolute;
    background: transparent;
    height: calc(100% + 8px);
    border-radius: 30px;
    top: -5px;
    width: calc(100% + 8px);
    left: -4px;
    z-index: 0;
}

.switch-box3.style-2 input:checked+label {
    background: #4caf50;
}

.switch-box3.style-2 input:checked+label:before {
    left: 12px;
}

.switch-box3.style-3 label {
    background: var(--ot-primary);
}

.switch-box3.style-3 label:before {
    content: "";
    position: absolute;
    border: none;
    width: 19px;
    height: 19px;
    background: #fff;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    top: 1px;
    left: 1px;
}

.switch-box3.style-3 label:after {
    content: "";
    position: absolute;
    background: transparent;
    height: calc(100% + 8px);
    border-radius: 30px;
    top: -5px;
    width: calc(100% + 8px);
    left: -4px;
    z-index: 0;
}

.switch-box3.style-3 input:checked+label {
    background: #4caf50;
}

.switch-box3.style-3 input:checked+label:before {
    left: 12px;
}

.info-text {
    display: inline-block;
}

.info-text::before {
    content: "Not active";
    color: var(--ot-primary-perragraph);
    font-size: 14px;
    text-transform: capitalize;
}

input:checked:checked~.info-text::before {
    content: "Active";
}

.info-text2 {
    display: inline-block;
}

.info-text2::before {
    content: "No";
    color: var(--ot-primary-perragraph);
    font-size: 14px;
    text-transform: capitalize;
}

input:checked:checked~.info-text2::before {
    content: "yes";
}

.info-text3 {
    display: inline-block;
}

.info-text3::before {
    content: "OFF";
    color: var(--ot-primary-perragraph);
    font-size: 14px;
    text-transform: capitalize;
}

input:checked:checked~.info-text3::before {
    content: "ON";
}

/* -----     Check Box Style    ----------- */
.check-wrap.style-one input[type="checkbox"] {
    display: none;
}

.check-wrap.style-one input[type="checkbox"]+label {
    font-size: 1rem;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--ot-primary-paragraph);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-bottom: 14px;
}

.check-wrap.style-one input[type="checkbox"]+label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--ot-primary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}

.check-wrap.style-one input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-wrap.style-two input[type="checkbox"] {
    display: none;
}

.check-wrap.style-two input[type="checkbox"]+label {
    font-size: 1rem;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--ot-primary-paragraph);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-bottom: 14px;
}

.check-wrap.style-two input[type="checkbox"]+label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--ot-primary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}

.check-wrap.style-two input[type="checkbox"]:checked+label {
    color: var(--ot-primary);
}

.check-wrap.style-two input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-wrap.style-five input[type="checkbox"] {
    display: none;
}

.check-wrap.style-five input[type="checkbox"]+label {
    font-size: 1rem;
    position: relative;
    width: 25px;
    height: 25px;
    border: 1px solid var(--ot-primary-title);
    border-radius: 100%;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
    text-indent: 37px;
    white-space: nowrap;
    color: var(--ot-primary-title);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check-wrap.style-five input[type="checkbox"]+label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 11px;
    border-bottom: 1px solid #4bd865;
    border-left: 1px solid #4bd865;
    top: 25%;
    left: 50%;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
}

.check-wrap.style-five input[type="checkbox"]:checked+label {
    border: 1px solid #4bd865;
}

.check-wrap.style-five input[type="checkbox"]:checked+label:after {
    opacity: 1;
    width: 25px;
}

.check-wrap.style-six input[type="checkbox"] {
    display: none;
}

.check-wrap.style-six input[type="checkbox"]+label {
    font-size: 1rem;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--ot-primary-title);
    border-radius: 0;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
    text-indent: 30px;
    white-space: nowrap;
    color: var(--ot-primary-title);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: transparent;
    line-height: 1;
    cursor: pointer;
}

.check-wrap.style-six input[type="checkbox"]+label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 6px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    top: 45%;
    left: 40%;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
}

.check-wrap.style-six input[type="checkbox"]:checked+label {
    border: 1px solid transparent;
    background: var(--ot-primary);
}

.check-wrap.style-six input[type="checkbox"]:checked+label:after {
    opacity: 1;
    width: 12px;
}

.check-wrap.style-seven input[type="checkbox"] {
    display: none;
}

.check-wrap.style-seven input[type="checkbox"]+label {
    font-size: 1rem;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--ot-primary-title);
    border-radius: 0;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
    text-indent: 30px;
    white-space: nowrap;
    color: var(--ot-primary-title);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: transparent;
    line-height: 1;
    cursor: pointer;
}

.check-wrap.style-seven input[type="checkbox"]+label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 6px;
    border-bottom: 2px solid var(--ot-primary);
    border-left: 2px solid var(--ot-primary);
    top: 46%;
    left: 40%;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
}

.check-wrap.style-seven input[type="checkbox"]:checked+label {
    border: 1px solid var(--ot-primary);
}

.check-wrap.style-seven input[type="checkbox"]:checked+label:after {
    opacity: 1;
    width: 12px;
}

.check-wrap.style-eight input[type="checkbox"] {
    display: none;
}

.check-wrap.style-eight input[type="checkbox"]+label {
    position: relative;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    border: 1px solid var(--ot-primary-paragraph);
    border-radius: 50%;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
    text-indent: 30px;
    white-space: nowrap;
    color: var(--ot-primary-paragraph);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: transparent;
    line-height: 1;
    cursor: pointer;
}

.check-wrap.style-eight input[type="checkbox"]+label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 6px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    top: 43%;
    left: 40%;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all ease-out 200ms;
    transition: all ease-out 200ms;
}

.check-wrap.style-eight input[type="checkbox"]:checked+label {
    border: 1px solid transparent;
    background: var(--ot-primary);
    color: var(--ot-primary);
}

.check-wrap.style-eight input[type="checkbox"]:checked+label:after {
    opacity: 1;
    width: 11px;
}

.radio-wrap.style-one input[type="radio"]:checked,
.radio-wrap.style-one input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.radio-wrap.style-one input[type="radio"]:checked+label,
.radio-wrap.style-one input[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--ot-primary-paragraph);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 8px;
}

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

.radio-wrap.style-one input[type="radio"]:checked+label:after,
.radio-wrap.style-one input[type="radio"]:not(:checked)+label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--ot-primary);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

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

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

.new-items svg {
    width: 1.35rem;
    height: 1.35rem;
}

.new-items svg.gear {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 1.35rem;
    cursor: help;
}

.new-items label {
    position: relative;
    margin: 0.65rm 1.35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 1rem;
}

.new-items .check {
    margin-right: 7px;
    width: 1.35rem;
    height: 1.35rem;
}

.new-items .check #border {
    fill: none;
    stroke: #7a7a8c;
    stroke-width: 3;
    stroke-linecap: round;
}

.new-items .check #dot {
    fill: var(--ot-primary);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.new-items input {
    display: none;
}

.new-items input:checked+label {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(var(--ot-primary)),
            to(var(--ot-primary)));
    background: linear-gradient(180deg, var(--ot-primary), var(--ot-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-items input:checked+label svg #border {
    stroke: var(--ot-primary);
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
    -webkit-animation: checked 500ms ease forwards;
    animation: checked 500ms ease forwards;
}

.new-items input:checked+label svg #dot {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
    transition: -webkit-transform 500ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
    transition: transform 500ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
    transition: transform 500ms cubic-bezier(0.57, 0.21, 0.69, 3.25),
        -webkit-transform 500ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
}

@-webkit-keyframes checked {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checked {
    to {
        stroke-dashoffset: 0;
    }
}

.colorBtn .radio {
    display: inline-block;
}

.colorBtn .radio input[type="radio"]+.radio-label:before {
    top: 4px;
}

.colorBtn .color_1 .radio-label:before {
    background-color: #8ed0dc;
    border: 1px solid #8ed0dc;
}

.colorBtn .color_2 .radio-label:before {
    background-color: #f49660;
    border: 1px solid #f49660;
}

.colorBtn .color_3 .radio-label:before {
    background-color: #8ed0dc;
    border: 1px solid #8ed0dc;
}

.colorBtn .color_4 .radio-label:before {
    background-color: #0caf60;
    border: 1px solid #0caf60;
}

.colorBtn .color_5 .radio-label:before {
    background-color: #f7bd59;
    border: 1px solid #f7bd59;
}

.colorBtn .color_6 .radio-label:before {
    background-color: #8377db;
    border: 1px solid #8377db;
}

.colorBtn .color_7 .radio-label:before {
    background-color: #ff81ca;
    border: 1px solid #ff81ca;
}

.colorBtn .color_8 .radio-label:before {
    background-color: #80ceff;
    border: 1px solid #80ceff;
}

.colorBtn .radio {
    margin-right: 5px;
    margin-bottom: 13px;
    display: inline-block;
}

.colorBtn .radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.colorBtn .radio input[type="radio"]+.radio-label:before {
    content: "";
    border-radius: 100%;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    top: 0;
    margin-right: 8px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.colorBtn .radio input[type="radio"]:checked+.radio-label:before {
    -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.colorBtn .radio input[type="radio"]:focus+.radio-label:before {
    outline: none;
}

.colorBtn .radio input[type="radio"]:disabled+.radio-label:before {
    -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.colorBtn .radio input[type="radio"]+.radio-label:empty:before {
    margin-right: 0;
}

.colorBtn .radio label {
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-icon {
    position: absolute;
    right: 16px;
    top: 54%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-53%);
    font-size: 20px;
    color: var(--ot-secondary-paragraph);
    cursor: pointer;
}

.modal {
    background: rgba(105, 120, 160, 0.16);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal-title {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--ot-primary-title);
}

.modal-content {
    border: none;
    padding: 17px 22px 22px 22px;
}

.modal-content {
    background-color: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
    border: 0;
}

.hidden.bs.modal {
    display: none !important;
}

.single-product {
    padding: 10px 10px;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid transparent;
    cursor: pointer;
}

.single-product.selected {
    border: 1px solid var(--ot-secondary);
    position: relative;
}

.single-product.selected::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    background: var(--ot-secondary);
    padding: 12px;
    border-radius: 4px 0 0 0;
}

@media (max-width: 575px) {
    .single-product {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-product {
        padding: 15px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-product {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-product {
        padding: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-product {
        padding: 15px;
    }
}

.single-product .images {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 0px;
    padding: 2px;
}

.single-product .cat-caption .ttile {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--ot-primary-paragraph);
    font-weight: 400;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .single-product .cat-caption .ttile {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .single-product .cat-caption .ttile {
        font-size: 14px;
    }
}

.productCount {
    width: 88px;
    text-align: center;
    position: relative;
}

.productCount input.qty {
    width: 100%;
    text-align: center;
    border: 1px solid var(--ot-primary-border);
    padding: 9px 20px;
    height: 33px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--ot-primary-paragraph);
    background: none;
}

.productCount .count-plus,
.productCount .count-minus {
    border: 0px solid transparent;
    background-color: transparent;
    color: #8d8f97;
}

.productCount .count-plus {
    position: absolute;
    right: 9px;
    top: 6px;
}

.productCount .count-minus {
    position: absolute;
    left: 9px;
    top: 7px;
}

.status {
    display: inline-block;
    line-height: 0.5;
    border: 0;
    padding: 5px 7px;
}

.status .icon {
    display: inline-block;
}

.status .icon i {
    line-height: 1;
}

.status .rate {
    display: inline-block;
    line-height: 1;
    margin: 0;
}

.pagination {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid var(--ot-secondary-border);
    padding: 20px 15px;
    background: var(--white);
    gap: 10px;
}

.pagination .page-total {
    font-size: 16px;
    color: var(--ot-primary-title);
}

.pagination .page-total span {
    color: var(--ot-tertiary);
    margin: 0 5px;
}

.pagination .pagination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pagination .pagination-list li {
    display: inline-block;
}

.pagination .pagination-list li:first-child .page-number {
    color: var(--ot-primary-paragraph);
}

.pagination .pagination-list li:last-child .page-number {
    color: var(--ot-primary-paragraph);
}

.pagination .pagination-list li .page-number {
    background: var(--white);
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 2px;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    border: 0;
    font-weight: 400;
    border-radius: 3px;
    font-size: 16px;
    color: var(--ot-primary-paragraph);
}

@media (max-width: 575px) {
    .pagination .pagination-list li .page-number {
        width: 29px;
        height: 29px;
        line-height: 29px;
        margin: 0 2px;
        font-size: 13px;
    }
}

.pagination .pagination-list li .page-number.current {
    background-color: var(--ot-primary);
    color: #fff;
}

.pagination .pagination-list li .page-number:hover {
    background-color: var(--ot-primary);
    color: #fff;
}

.mw-100 {
    min-width: 100px !important;
}

.mw-250 {
    max-width: 250px;
}

.invoice-logo-size {
    max-width: 160px;
}

.td-padding-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.td-padding-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.invoice-btn-size {
    padding: 8px 11px;
}

.discriptions-head {
    background: var(--body-bg);
    padding: 10px 1px;
    border-radius: 3px;
}

.invoice-receipt-table tbody,
.invoice-receipt-table td,
.invoice-receipt-table tfoot,
.invoice-receipt-table th,
.invoice-receipt-table thead,
.invoice-receipt-table tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.invoice-receipt-table tbody td {
    font-weight: 400;
    padding: 3px 0;
    padding-left: 14px;
    font-size: 12px;
    color: var(--ot-primary-title);
    vertical-align: initial;
}

.modal-receipt-table tbody,
.modal-receipt-table td,
.modal-receipt-table tfoot,
.modal-receipt-table th,
.modal-receipt-table thead,
.modal-receipt-table tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.modal-receipt-table tbody td {
    font-weight: 400;
    padding: 8px 0;
    padding-left: 14px;
    font-size: 14px;
    color: var(--ot-primary-title);
    vertical-align: initial;
}

.tagify {
    width: 100%;
}

.tagify-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-transform: capitalize;
    color: #494e5c;
    display: block;
    margin-bottom: 8px;
}

.tagify__tag {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

span.tagify__tag-text {
    font-size: 14px;
    padding: 0px 6px;
    color: var(--white);
}

.tagify__tag__removeBtn::after {
    content: "×";
    -webkit-transition: 0.3s, color 0s;
    transition: 0.3s, color 0s;
    position: absolute;
    left: 8px;
    font-size: 16px;
    color: var(--white);
}

.tagify__tag>div::before {
    background: #616161;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 8px;
}

.tagify__tag__removeBtn {
    font-size: 14px;
    margin-left: 6px;
    margin-right: 0;
}

.tagify__tag>div {
    padding-left: 0;
}

.tagify--outside {
    border: 0;
}

.tagify--outside .tagify__input {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    border: 1px solid var(--tags-border-color);
    margin-bottom: 1em;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    height: 49px;
    width: 100%;
    font-size: 16px;
    padding: 15px 14px;
    position: relative;
    border-radius: 8px;
    border-color: #f7f7f7;
    background: #f7f7f7;
    line-height: 18px;
}

.tagify--outside .tagify__input:hover {
    border-color: var(--tags-hover-border-color);
}

.tagify--outside.tagify--focus .tagify__input {
    -webkit-transition: 0s;
    transition: 0s;
    border-color: var(--tags-focus-border-color);
}

.tagify__tag>div::before {
    background: none !important;
    border: 1px solid var(--ot-secondary-border);
}

.tagify {
    width: 100%;
}

.tagify__tag__removeBtn {
    margin-left: 0px !important;
}

.tagify__tag__removeBtn:hover+div::before {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.tagify__tag__removeBtn:hover {
    background: none !important;
}

.tagify__tag__removeBtn::after {
    color: var(--ot-primary-paragraph) !important;
    color: #f96170 !important;
    top: 8px !important;
    font-size: 24px !important;
    left: 11px !important;
}

span.tagify__tag-text {
    color: var(--ot-tertiary-title) !important;
}

.tagify__tag>div {
    padding: 7px 12px !important;
}

.tagify__tag.tagify--noAnim {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 9px;
}

.tagify--outside {
    border: 0;
}

.tagify--outside.tagify--focus .tagify__input {
    -webkit-transition: 0s;
    transition: 0s;
    border-color: var(--tags-focus-border-color);
}

.tagify--outside .tagify__input {
    background: none !important;
    color: var(--ot-primary-title);
    height: 49px;
    width: 100%;
    font-size: 16px;
    padding: 14px 14px 15px 14px;
    border-radius: 8px;
    border: 1px solid var(--ot-primary-border) !important;
}

.tagify--outside .tagify__input:hover {
    border-color: var(--tags-hover-border-color);
}

.content1 {
    max-width: 650px;
    margin: 0 auto;
    top: 35%;
    position: relative;
}

.content1 h1 {
    line-height: 1.5;
    color: white;
    font-weight: 300;
    text-align: center;
    font-size: 3rem;
    text-shadow: 0 2px 5px black;
}

.page-loader {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    position: absolute;
    background: #272727;
    background: #ececec;
    /* background: rgba(105, 120, 160, 0.16); */
    /* -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px); */
    z-index: 1000;
}

.page-loader .txt {
    color: #666;
    text-align: center;
    top: 50%;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: bold;
    line-height: 1.5;
}

.page-loader img {
    max-width: 120px;
}

.login-logo img {
    max-width: 120px;
}

.background-cover {
    background-size: cover;
}

.spinner {
    position: relative;
    top: 35%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: rgba(39, 39, 39, 0.5647058824);
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.grid-container-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 66.333% 24px 32.49%;
    grid-template-columns: 66.333% 32.49%;
    gap: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid-container-1 {
        -ms-grid-columns: 60.333% 36.49%;
        grid-template-columns: 60.333% 36.49%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grid-container-1 {
        -ms-grid-columns: 55.333% 41.49%;
        grid-template-columns: 55.333% 41.49%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .grid-container-1 {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

@media (max-width: 575px) {
    .grid-container-1 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }
}

.grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 11px auto 11px auto;
    grid-template-columns: auto auto auto;
    gap: 11px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .grid-container {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid-container {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grid-container {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .grid-container {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media (max-width: 575px) {
    .grid-container {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

.grid-container-profile {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 24px auto;
    grid-template-columns: auto auto;
    gap: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .grid-container-profile {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid-container-profile {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grid-container-profile {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .grid-container-profile {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media (max-width: 575px) {
    .grid-container-profile {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

.ot-login-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    overflow: auto;
}

.ot-login-area .ot-login-card {
    padding: 48px;
    background: var(--white);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .ot-login-area .ot-login-card {
        padding: 30px;
    }
}

.ot-login-area .ot-login-card img {
    margin: auto;
    display: block;
}

.ot-login-area .ot-login-card .title {
    padding-top: 60px;
    padding-bottom: 40px;
}

.ot-login-area .ot-login-card .title h4 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--ot-primary-title);
    text-align: center;
}

.ot-login-area .ot-login-card .remember-me {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ot-login-area .ot-login-card .remember-me label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
}

.ot-login-area .ot-login-card .remember-me label small {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--ot-primary-title);
    margin-left: 8px;
}

.ot-login-area .ot-login-card .remember-me .ot-checkbox {
    margin-right: 10px;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.ot-login-area .ot-login-card .remember-me .ot-checkbox:checked~.ot-checkmark {
    background-color: var(--ot-primary);
    border-color: var(--ot-primary);
}

.ot-login-area .ot-login-card .remember-me .ot-checkbox:checked~.ot-checkmark::after {
    display: block;
}

.ot-login-area .ot-login-card .remember-me .ot-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1.5px solid #b1b5c4;
    margin-right: 12px;
    border-radius: 50%;
}

.ot-login-area .ot-login-card .remember-me .ot-checkmark::after {
    content: "\eb7b";
    font-family: var(--remix-icon);
    position: absolute;
    left: 0;
    top: -1px;
    color: #fff;
    display: none;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.ot-login-area .ot-login-card .remember-me .forget-section span {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: right;
    letter-spacing: 0.5px;
    color: var(--ot-tertiary);
}

.ot-login-area .ot-login-card .login-footer .create-account p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: var(--ot-primary-paragraph);
    text-align: center;
    margin-block: 28px;
}

.ot-login-area .ot-login-card .login-footer .create-account p span {
    color: var(--ot-primary);
    font-size: 14px;
    font-weight: 600;
}

.ot-login-area .ot-login-card .login-footer .sign-with p {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--ot-primary);
}

.ot-login-area .ot-login-card .login-footer .sign-with .icon-login-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .ot-login-area .ot-login-card .login-footer .sign-with .icon-login-section {
        gap: 20px;
    }
}

.ot-login-area .ot-login-card .login-footer .sign-with .icon-login-section .icon-login a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid var(--ot-primary-border);
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    color: var(--ot-primary-paragraph);
    font-size: 18px;
}

@media (max-width: 575px) {
    .ot-login-area .ot-login-card .login-footer .sign-with .icon-login-section .icon-login a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }
}

.ot-login-area .ot-login-card .login-footer .sign-with .icon-login-section .icon-login a:hover {
    background: var(--ot-primary);
    border: 1px solid transparent;
    color: #fff;
}

.ot-login-area .terms-condition span {
    color: var(--ot-tertiary);
}

.ot-login-area .login-image img {
    max-width: 100%;
}

@media (max-width: 991px) {
    .ot-login-area .login-image img {
        display: none;
    }
}

.gutter-x-120 {
    --bs-gutter-x: 120px;
}

.login-bg {
    position: relative;
}

.login-bg::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background-image: url(../../assets/images/auth-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .login-bg::before {
        width: 50%;
        background-size: contain;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .login-bg::before {
        width: 50%;
        background-size: contain;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .login-bg::before {
        width: 40%;
        background-size: contain;
    }
}

@media (max-width: 991px) {
    .login-bg::before {
        display: none;
    }
}

.password-input {
    padding-right: 32px;
}

.toggle-password {
    position: absolute;
    top: 43px;
    right: 16px;
    cursor: pointer;
    z-index: 9999;
    font-size: 18px;
}

.single-support {
    padding: 28px 17px 31px 17px;
    border-radius: 10px;
    border: 1px solid var(--ot-primary-border);
    cursor: pointer;
}

.single-support .cat-icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 22px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.single-support .cat-cap .title {
    font-size: 18px;
    margin-bottom: 16px;
    display: block;
}

@media (max-width: 575px) {
    .single-support .cat-cap .title {
        font-size: 16px;
    }
}

.single-support .cat-cap .pera {
    font-size: 14px;
    margin-bottom: 0px;
}

.single-support .cat-cap .date {
    font-size: 14px;
    color: var(--ot-primary);
}

.single-support:hover .cat-icon {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.live-support {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 10px;
    border-radius: 12px;
    background: var(--ot-primary);
    max-width: 222px;
    margin-left: auto;
}

.live-support .icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.live-support .product-tag {
    font-size: 12px;
    padding: 8px 9px;
    border-radius: 4px;
}

.live-support .cat-caption .title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
}

@media (max-width: 575px) {
    .live-support .cat-caption .title {
        font-size: 18px;
    }
}

.live-support .cat-caption .pear {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 1.6;
}

.mw-400 {
    max-width: 400px;
}

.mw-500 {
    max-width: 500px;
}

.single-notificatins {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.single-notificatins .icon-notify {
    position: relative;
}

.single-notificatins .icon-notify::before {
    display: block;
    content: "\ef9a";
    font-family: var(--remix-icon);
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 44px;
    border-radius: 500%;
    background: var(--ot-secondary);
    height: 44px;
    width: 44px;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.single-notificatins .icon-notify.add-por-notification::before {
    background: var(--ot-primary);
    content: "\ea13" !important;
}

.single-notificatins .icon-notify.offer-notification::before {
    background: #0caf60;
}

.single-notificatins .icon-notify.cancel-notification::before {
    background: #ff6767;
    content: "\eb99" !important;
}

.single-notificatins .icon-notify.alert-notification::before {
    background: #ff9900 !important;
}

.single-notificatins .icon-notify.deposit-notification::before {
    background: #666666;
    content: "\ea92" !important;
}

.single-notificatins .time-title {
    font-size: 12px;
    color: var(--ot-primary-paragraph);
}

/*
.grid-container-chatbox {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 19.5% 80.5%;
    grid-template-columns: 19.5% 80.5%;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .grid-container-chatbox {
        -ms-grid-columns: 25% 75%;
        grid-template-columns: 25% 75%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .grid-container-chatbox {
        -ms-grid-columns: 30% 70%;
        grid-template-columns: 30% 70%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .grid-container-chatbox {
        -ms-grid-columns: 30% 70%;
        grid-template-columns: 30% 70%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid-container-chatbox {
        -ms-grid-columns: 45% 55%;
        grid-template-columns: 45% 55%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grid-container-chatbox {
        -ms-grid-columns: 40% 60%;
        grid-template-columns: 40% 60%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .grid-container-chatbox {
        -ms-grid-columns: 45% 55%;
        grid-template-columns: 45% 55%;
    }
}
@media (max-width: 575px) {
    .grid-container-chatbox {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }
} */

.chat-box-area {
    border: 1px solid var(--ot-primary-border);
}

.chat-box-area .chat-left-sidebar {
    height: calc(100vh - 320px);
    border-right: 1px solid var(--ot-primary-border);
}

@media (max-width: 575px) {
    .chat-box-area .chat-left-sidebar {
        height: calc(100vh - 420px);
    }
}

.chat-box-area .chat-left-sidebar .top {
    padding: 14px;
}

.chat-box-area .chatWrapper {
    background: #ffffff;
    -webkit-box-shadow: 0px 1px 80px 12px rgba(26, 40, 68, 0.06);
    box-shadow: 0px 1px 80px 12px rgba(26, 40, 68, 0.06);
    border-radius: 12px;
    padding: 20px;
    border-radius: 8px;
    height: 100vh;
}

.chat-box-area .chat-body {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.chat-box-area .chat-search-wrapper .searchBox {
    width: 100%;
    background: none;
    height: 43px;
    position: relative;
    border: 1px solid var(--ot-primary-border);
    border-radius: 4px;
}

.chat-box-area .chat-search-wrapper .searchBox input {
    width: 100%;
    height: 100%;
    padding: 0 19px;
    color: var(--ot-primary-paragraph);
}

.chat-box-area .chat-search-wrapper .searchBox input::-webkit-input-placeholder {
    font-size: 14px;
}

.chat-box-area .chat-search-wrapper .searchBox input::-moz-placeholder {
    font-size: 14px;
}

.chat-box-area .chat-search-wrapper .searchBox input:-ms-input-placeholder {
    font-size: 14px;
}

.chat-box-area .chat-search-wrapper .searchBox input::-ms-input-placeholder {
    font-size: 14px;
}

.chat-box-area .chat-search-wrapper .searchBox input::placeholder {
    font-size: 14px;
}

.chat-box-area .chat-search-wrapper .searchBox .icon {
    position: absolute;
    top: 50%;
    right: 11px;
    font-size: 21px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
    color: var(--ot-secondary-paragraph);
}

@media (max-width: 575px) {
    .chat-box-area .chat-list-wrapper {
        border-bottom: 1px solid var(--ot-primary-border);
        padding-bottom: 21px;
        margin-bottom: 40px;
    }
}

.chat-box-area .chat-list-wrapper .chat-list {
    max-height: 450px;
}

@media (max-width: 575px) {
    .chat-box-area .chat-list-wrapper .chat-list {
        height: 250px;
    }
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat {
    padding: 8px 12px;
    padding-bottom: 0px;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media (max-width: 1199px) {
    .chat-box-area .chat-list-wrapper .chat-list .single-chat {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-img {
    max-width: 44px;
    min-width: 44px;
    width: 44px;
    height: 44px;
    background: #e3e3e3;
    border-radius: 50%;
    border-radius: 50%;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-img img {
    border-radius: 50%;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-img.online {
    position: relative;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-img.online::after {
    content: "";
    top: 0px;
    right: 0;
    position: absolute;
    width: 10px;
    height: 10px;
    background: green;
    border-radius: 50%;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-img.off-online {
    position: relative;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-img.off-online::after {
    content: "";
    top: 0px;
    right: 0;
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(222, 144, 60);
    border-radius: 50%;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .user-name {
    margin-bottom: 4px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 15px;
    display: block;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .user-name {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .user-name {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .user-name {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .user-name {
        font-size: 14px;
    }
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .chat {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-cap .user-chat-caption .on-off-line {
    font-size: 12px;
    font-weight: 700;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-timer {
    text-align: center;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-timer .time {
    color: var(--ot-secondary);
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-timer .inactive-count {
    color: var(--ot-primary-paragraph);
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat.active {
    background: #f6f6f6;
}

.chat-box-area .chat-list-wrapper .chat-list .single-chat.unseen-chat {
    background: var(--white);
}

.chat-box-area .current-chat-user {
    background: var(--white);
    border-bottom: 1px solid var(--ot-secondary-border);
    padding-left: 23px;
    cursor: pointer;
}

.chat-box-area .chatBox-message {
    overflow: hidden;
    padding: 20px 12px;
    overflow-x: auto;
    background-color: var(--ot-bg-secondary);
    padding: 24px;
    border-radius: 8px;
    border: 0;
}

.chat-box-area .chatBox-message .chatShow {
    margin-bottom: 20px;
    max-height: 100vh;
    overflow-y: auto;
    max-height: 450px;
    overflow-y: auto;
    background: var(--body-bg);
    border-radius: 6px;
    padding: 10px;
}

.chat-box-area .chatBox-message .chatShow .single-chat {
    margin-bottom: 24px;
    background: none;
    padding: 0;
    width: 100%;
}

.chat-box-area .chatBox-message .chatShow .single-chat .chatText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatImg {
    max-width: 44px;
    min-width: 44px;
    width: 44px;
    height: 44px;
    background: #e3e3e3;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatCaption {
    width: 90%;
}

.chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatCaption .chatPera {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 400;
    display: inline-block;
    padding: 6px 18px;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatCaption .chatPera {
        font-size: 12px;
        margin-bottom: 7px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatCaption .chatPera {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatCaption .chatPera {
        font-size: 12px;
    }
}

.chat-box-area .chatBox-message .chatShow .single-chat .chatText .chatCaption .sendTime {
    color: rgba(var(--primary-rgb), 0.8);
    display: block;
    font-size: 13px;
}

.chat-box-area .chatBox-message .chatShow .single-chat.message .chatText .chatCaption {
    text-align: left;
    margin-right: auto;
}

.chat-box-area .chatBox-message .chatShow .single-chat.message .chatText .chatCaption .chatPera {
    -webkit-box-shadow: rgba(100, 100, 111, 0.07) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.07) 0px 7px 29px 0px;
    border-radius: 10px;
    background: var(--white);
}

.chat-box-area .chatBox-message .chatShow .single-chat.message .chatText .chatCaption .sendTime {
    text-align: center;
}

.chat-box-area .chatBox-message .chatShow .single-chat.replyMessage .chatText {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    cursor: pointer;
}

.chat-box-area .chatBox-message .chatShow .single-chat.replyMessage .chatText .chatCaption {
    text-align: right;
    margin-left: auto;
}

.chat-box-area .chatBox-message .chatShow .single-chat.replyMessage .chatText .chatCaption .chatPera {
    border-radius: 10px;
    background: var(--ot-primary);
    -webkit-box-shadow: rgba(100, 100, 111, 0.07) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.07) 0px 7px 29px 0px;
    color: #fff;
}

.chat-box-area .chatBox-message .chatShow .single-chat.replyMessage .chatText .chatCaption .sendTime {
    text-align: center;
}

.chat-box-area .chatSend-wrapper {
    position: absolute;
    bottom: 15px;
    left: 16px;
    right: 16px;
    margin-top: 20px;
    overflow: hidden;
    z-index: 999;
    border-radius: 7px;
}

@media (max-width: 575px) {
    .chat-box-area .chatSend-wrapper {
        background: none;
    }
}

.chat-box-area .chatSend-wrapper .sendMessage .input {
    border-radius: 8px;
    border: 1px solid var(--ot-primary-border);
    width: 100%;
    height: 52px;
    padding: 10px 20px;
    padding-right: 100px;
    background: var(--white);
    color: var(--ot-primary-paragraph);
}

@media (max-width: 575px) {
    .chat-box-area .chatSend-wrapper .sendMessage .input {
        padding-right: 20px;
    }
}

.chat-box-area .chatSend-wrapper .sendMessage .input::-webkit-input-placeholder {
    font-size: 12px;
}

.chat-box-area .chatSend-wrapper .sendMessage .input::-moz-placeholder {
    font-size: 12px;
}

.chat-box-area .chatSend-wrapper .sendMessage .input:-ms-input-placeholder {
    font-size: 12px;
}

.chat-box-area .chatSend-wrapper .sendMessage .input::-ms-input-placeholder {
    font-size: 12px;
}

.chat-box-area .chatSend-wrapper .sendMessage .input::placeholder {
    font-size: 12px;
}

.chat-box-area .chatSend-wrapper .sendMessage .imgSlector {
    position: absolute;
    right: 102px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    border-radius: 30px;
}

.chat-box-area .chatSend-wrapper .sendMessage .imgSlector .icon {
    border-radius: 30px;
}

@media (max-width: 575px) {
    .chat-box-area .chatSend-wrapper .sendMessage .imgSlector {
        position: relative;
        right: 8px;
        top: 30px;
        float: right;
    }
}

.chat-box-area .chat-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 20px;
    cursor: pointer;
    left: auto;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .chat-box-area .chat-admin {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .chat-box-area .chat-admin {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
}

.chat-box-area .chat-admin .profile-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.chat-box-area .chat-admin .user-img {
    max-width: 44px;
    min-width: 44px;
    width: 44px;
    height: 44px;
    background: #e3e3e3;
    border-radius: 50%;
    border-radius: 50%;
}

.chat-box-area .chat-admin .user-img img {
    border-radius: 50%;
}

.chat-box-area .chat-admin .user-chat-caption .user-name {
    margin-bottom: 1px;
    line-height: 1.5;
    color: var(--ot-primary-title);
    font-weight: 500;
    font-size: 16px;
    display: block;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .chat-box-area .chat-admin .user-chat-caption .user-name {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .chat-box-area .chat-admin .user-chat-caption .user-name {
        font-size: 21px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .chat-box-area .chat-admin .user-chat-caption .user-name {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .chat-box-area .chat-admin .user-chat-caption .user-name {
        font-size: 18px;
    }
}

.chat-box-area .chat-admin .user-chat-caption .chat-status {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 14px;
    padding: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .chat-box-area .chat-admin .user-chat-caption .chat-status {
        font-size: 12px;
    }
}

.chat-box-area .custom-dropdown button {
    background: none;
    padding: 0;
    border: 0;
    font-size: 40px;
    color: var(--ot-primary-border);
    line-height: 1;
}

.chat-box-area .custom-dropdown button::after {
    display: none;
}

.chat-box-area .btn-wrapper .btn-rounded2 {
    font-family: #667085;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    background: var(--ot-primary) !important;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    border: 0;
}

.chat-title {
    line-height: 1.5;
    color: var(--ot-primary-title);
    font-weight: 500;
    font-size: 20px;
    display: block;
}

.chat-category .select2-container .select2-selection--single {
    height: 30px;
    background: var(--ot-secondary);
    border-radius: 6px !important;
    min-width: 150px;
}

.chat-category .select2-selection {
    min-height: 35px !important;
    padding: 5px 14px 5px 14px;
    border: 0 !important;
}

.chat-category .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
    padding-right: 24px;
    font-size: 12px;
    text-transform: capitalize;
    color: #fff;
    line-height: 20px;
}

.chat-category .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
    height: auto;
    top: 14px;
}

.chat-category .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-bottom: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
}

.bradecrumb .left-contents .icon {
    color: var(--ot-primary);
    font-size: 25px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: rgba(var(--ot-primary-rgb), 0.06);
    border-radius: 4px;
}

@media screen and (max-width: 600px) {
    .bradecrumb .left-contents .icon {
        background: none;
    }
}

.bradecrumb .content .title {
    font-size: 20px;
}

.min-h-500 {
    min-height: 500px;
}

.min-h-300 {
    min-height: 300px;
}

.min-h-400 {
    min-height: 400px;
}

/* summary start*/
.table-summar {
    border-top: 1px solid var(--ot-secondary-border);
    border-bottom: 1px solid var(--ot-secondary-border);
    padding-bottom: 5px;
    padding: 0;
}

.summary-title .title {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.summary-title .title i {
    color: var(--ot-text-primary);
    font-size: 18px;
}

.summary-listing .single-summary-list {
    display: inline-block;
}

.summary-listing .single-summary-list:not(:last-child) {
    border-right: 1px solid var(--ot-border-primary);
    margin-right: 10px;
    padding-right: 10px;
}

@media screen and (max-width: 575px) {
    .summary-listing .single-summary-list:not(:last-child) {
        border-right: 0;
        margin-right: 5px;
        padding-right: 5px;
    }

    .summary-listing {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.summary-listing .single-summary-list .number {
    font-weight: 600;
    font-size: 16px;
    color: var(--ot-text-title);
}

@media screen and (max-width: 575px) {
    .summary-listing .single-summary-list .number {
        font-size: 16px;
    }
}

.summary-listing .single-summary-list .text {
    font-weight: 400;
    font-size: 14px;
    color: var(--ot-text-primary);
    margin: 0 10px;
    text-transform: capitalize;
}

.summary-listing .single-summary-list:nth-child(2) .text {
    color: #0caf60;
}

.summary-listing .single-summary-list:nth-child(3) .text {
    color: #ff6767;
}

.summary-listing .single-summary-list:nth-child(4) .text {
    color: #534aba;
}

.summary-listing .single-summary-list:nth-child(5) .text {
    color: #e7792a;
}

/* end-of summary */
.user-table-photo img {
    border-radius: 3px;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.mw-180 {
    min-width: 180px;
}

.tabs .listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.tabs .listing .single-list .single {
    font-size: 16px;
    color: var(--ot-primary-paragraph);
    padding: 5px 5px;
    text-transform: capitalize;
}

.tabs .listing .single-list .single.active {
    color: var(--ot-primary);
}

.dark-theme {
    background: var(--body-bg);
    /* Dark Theme start*/
    /* roles permission  */
}

.dark-theme .white-bg {
    background: var(--dark-bg1);
}

.dark-theme .btn-primary-fill {
    color: #fff !important;
}

.dark-theme .btn-cancel-fill {
    color: #fff !important;
}

.dark-theme .btn-cancel-fill:hover {
    border-color: var(--ot-primary-border);
}

.dark-theme .btn-secondary-fill {
    color: #fff !important;
}

.dark-theme .btn-secondary-fill:hover {
    border-color: var(--ot-primary-border);
}

.dark-theme .ot-tab-nav .nav-link {
    background: var(--white);
    color: var(--ot-primary-paragraph);
}

.dark-theme .header-area .main-menu .listing .single-list .single {
    color: var(--ot-primary-paragraph);
}

.dark-theme .btn-primary-outline {
    color: var(--ot-primary-title);
    border: 1px solid var(--ot-primary-border);
}

.dark-theme .btn-primary-fill {
    color: var(--ot-primary-paragraph);
}

.dark-theme .btn-primary-fill:hover {
    border-color: var(--ot-primary-border);
}

.dark-theme .btn-primary-submit {
    color: var(--ot-primary-paragraph);
}

.dark-theme .select2-results {
    background: var(--white);
}

.dark-theme .select2-search--dropdown {
    background: var(--white);
}

.dark-theme .select2-dropdown {
    border-color: var(--ot-primary-border);
    background-color: var(--white);
}

.dark-theme .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--ot-primary-paragraph);
    color: var(--ot-primary);
}

.dark-theme .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--ot-primary);
    color: var(--ot-primary-paragraph);
}

.dark-theme .ot_fileUploader input.form-control::-webkit-input-placeholder {
    color: var(--ot-primary-paragraph);
}

.dark-theme .ot_fileUploader input.form-control::-moz-placeholder {
    color: var(--ot-primary-paragraph);
}

.dark-theme .ot_fileUploader input.form-control:-ms-input-placeholder {
    color: var(--ot-primary-paragraph);
}

.dark-theme .ot_fileUploader input.form-control::-ms-input-placeholder {
    color: var(--ot-primary-paragraph);
}

.dark-theme .ot_fileUploader input.form-control::placeholder {
    color: var(--ot-primary-paragraph);
}

.dark-theme .btn-primary-outline:hover {
    background: var(--ot-primary-btn);
    border-color: transparent !important;
}

.dark-theme .ck.ck-toolbar.ck-toolbar_grouping {
    background: var(--body);
    border-color: var(--ot-primary-border);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dark-theme .ck.ck-button,
.dark-theme a.ck.ck-button {
    color: var(--dark);
}

.dark-theme .ck.ck-dropdown .ck-button.ck-dropdown__button {
    width: 100%;
}

.dark-theme .ck.ck-button:not(.ck-disabled):hover,
.dark-theme a.ck.ck-button:not(.ck-disabled):hover {
    background: var(--white);
}

.dark-theme .ck.ck-button.ck-on,
.dark-theme a.ck.ck-button.ck-on {
    background: var(--white);
}

.dark-theme .tagify__input::before {
    color: #fff;
}

.dark-theme .tagify__input:focus:empty::before {
    color: #fff;
}

.dark-theme #SvgjsText1022 {
    fill: var(--ot-primary-paragraph);
}

.dark-theme #SvgjsText1021 {
    fill: var(--dark) !important;
}

.dark-theme #SvgjsText1210 {
    fill: var(--dark) !important;
}

.dark-theme #SvgjsText1015 {
    fill: var(--ot-primary-paragraph);
}

.dark-theme #SvgjsText1016 {
    fill: var(--ot-primary-paragraph);
}

.dark-theme .daterangepicker::after {
    border-bottom: 6px solid var(--ot-primary-border);
}

.dark-theme .daterangepicker .calendar-table .next span,
.dark-theme .daterangepicker .calendar-table .prev span {
    border-color: #fff;
}

.dark-theme .daterangepicker .ranges li.active {
    background-color: var(--ot-primary);
    color: #fff;
}

.dark-theme .daterangepicker td.available:hover,
.dark-theme .daterangepicker th.available:hover {
    background-color: var(--ot-primary);
}

.dark-theme .daterangepicker td.available:hover,
.dark-theme .daterangepicker th.available:hover {
    background-color: var(--ot-primary);
}

.dark-theme .check-wrap.style-seven input[type="checkbox"]+label::after {
    border-bottom: 2px solid var(--ot-primary-title);
    border-left: 2px solid var(--ot-primary-title);
}

.dark-theme .half-expand ul.parent-menu-list>li>ul,
.dark-theme .half-expand .sidebar-dropdown-menu>li ul {
    background: var(--ot-bg-secondary) !important;
    border: none;
}

.dark-theme .main {
    background-color: var(--body_bg);
    border: 1px solid var(--ot-primary-border);
}

.dark-theme .tagify__input::before {
    color: rgba(117, 123, 140, 0.568627451);
}

.dark-theme .tagify__input:focus:empty::before {
    color: rgba(117, 123, 140, 0.568627451);
}

.dark-theme .sidebar-menu .sidebar-menu-section .mm-active>a::before {
    background: var(--ot-primary);
}

.dark-theme .sidebar-menu .sidebar-menu-section .mm-active ul {
    background-color: var(--ot-bg-primary);
}

.dark-theme .theme-switch::before {
    background: #272b30;
}

.dark-theme .message {
    background-color: var(--white) !important;
    color: var(--ot-primary-title);
}

.dark-theme .input-group-text {
    color: var(--ot-primary-title);
    border-color: var(--ot-primary-border) !important;
}

.dark-theme .ot-charts .ot-badge.primary {
    background-color: rgba(122, 182, 104, 0.1);
}

.dark-theme .apexcharts-legend-text {
    color: #6f767e !important;
}

.dark-theme .role-permisssion-control {
    border-color: #272b30;
}

.dark-theme .select2-dropdown {
    background-color: var(--ot-bg-secondary);
}

.dark-theme .select2-dropdown span {
    color: #fff;
}

.dark-theme .user_roles_border,
.dark-theme .user_roles_permission {
    border-color: #272b30;
}

.dark-theme .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.dark-theme .summery-card .card-bottom .card-states .card-badge:last-child {
    background-color: rgba(255, 240, 237, 0.1);
}

.dark-theme .summery-card .card-bottom .card-states .card-badge:first-child {
    background-color: rgba(233, 250, 244, 0.1);
}

.dark-theme .theme-switch::before {
    background: #272b30;
}

.dark-theme .half-expand ul.parent-menu-list>li>ul {
    background: var(--ot-bg-secondary) !important;
    border: none;
}

.dark-theme .sidebar-menu .sidebar-menu-section .mm-active>a::before {
    background: var(--ot-primary);
}

.dark-theme .breadcrumb-item+.breadcrumb-item::before {
    color: var(--ot-primary-title);
}

.dark-theme .sidebar-menu .sidebar-menu-section .mm-active ul {
    background-color: var(--ot-bg-primary);
}

.dark-theme .summery-card .card-bottom .card-states .card-badge:last-child {
    background-color: rgba(255, 240, 237, 0.1);
}

.dark-theme .summery-card .card-bottom .card-states .card-badge:first-child {
    background-color: rgba(233, 250, 244, 0.1);
}

.dark-theme .bg-gray {
    background: #1a1d20 !important;
}

.dark-theme input::-webkit-calendar-picker-indicator {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark-theme .radio-button-group .btn-group .btn {
    color: #fff;
}

.dark-theme .sidebar .sidebar-menu .sidebar-menu-section .mm-active>a {
    color: var(--ot-primary) !important;
    background: rgba(43, 45, 53, 0.2901960784);
}

@media (max-width: 991.98px) {
    .dark-theme .sidebar-expand .sidebar {
        background: #111415 !important;
    }
}

.dark-theme .table-content .table-toolbar .dropdown-export .dropdown-menu,
.dark-theme .dropdown-menu.show {
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
}

.dark-theme .ot-form-control:focus-visible,
.dark-theme .ot-form-control:focus,
.dark-theme .form-select:focus-visible {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
}

.dark-theme .profile-border {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--ot-primary-border);
}

.dark-theme .theme-switch .switch-field {
    background-color: var(--ot-bg-primary);
}

.dark-theme .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item .mm-show,
.dark-theme .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item ul {
    background: var(--white) !important;
}

.dark-theme .header .header-search .search-field {
    color: #b2bec3;
    background: rgba(246, 246, 246, 0.06);
}

.dark-theme .header-control-item .item-content i:hover {
    color: var(--white);
}

.dark-theme h6,
.dark-theme h5,
.dark-theme h4,
.dark-theme h3,
.dark-theme h2,
.dark-theme h1 {
    color: var(--ot-primary-title);
}

.dark-theme .single_todo .todo_title {
    color: var(--ot-primary-title);
}

.dark-theme .single_todo:not(:last-child),
.dark-theme .lead_list:not(:last-child) {
    border-color: var(--ot-primary-border);
}

.dark-theme .table-content.table-basic .table .thead tr th,
.dark-theme .client_box .client_para_text {
    color: var(--ot-primary-title);
}

.dark-theme .table.table-bordered tbody tr,
.dark-theme .table-content.table-basic .table .thead tr {
    border-bottom-color: var(--ot-primary-border);
}

.dark-theme .client_box .client_title {
    color: var(--ot-primary-title);
}

.dark-theme .symbol .symbol-label {
    background-color: #141518;
}

.dark-theme .theme_dropdown .btn {
    border-color: var(--border_3);
    color: var(--ot-primary-title);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.dark-theme .theme_dropdown .btn:hover {
    color: var(--white);
}

.dark-theme .single-select>.select2-container.language-select-container .select2-selection--single {
    border: 1px solid var(--border_3) !important;
    background: none !important;
    color: var(--ot-primary-title);
}

.dark-theme .crm_small_widgetTab li .nav-link {
    background: #2b2b40;
    color: var(--ot-primary-title);
}

.dark-theme .crm_small_widgetTab li .nav-link.active {
    background: #2b2b40;
    color: var(--ot-primary-title);
}

.dark-theme .select2-container .select2-dropdown {
    background-color: var(---white);
}

.dark-theme .select2-container .select2-results>.select2-results__options {
    background-color: var(---white);
}

.dark-theme .select2-container .select2-dropdown .select2-results__option {
    color: var(--ot-primary-title);
}

.dark-theme .select2-container .select2-results__option--selected {
    background-color: transparent !important;
    color: var(--ot-primary) !important;
}

.dark-theme .select2-container .select2-results__option--highlighted.select2-results__option--selectable {
    color: var(--white) !important;
    background-color: transparent !important;
}

.dark-theme .select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--ot-primary-title);
}

.dark-theme .theme_dropdown .theme_list {
    background: transparent;
}

.dark-theme .dropdown-menu.show {
    background: var(--white) !important;
}

.dark-theme .profile-info span {
    color: var(--ot-primary-title);
}

.dark-theme .select2-container .select2-search--inline .select2-search__field {
    color: var(--ot-primary-title) !important;
}

.dark-theme .select2-container .select2-selection--multiple .select2-selection__choice {
    background: rgba(91, 88, 255, 0.2);
}

.dark-theme .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.dark-theme .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    color: var(--ot-primary-title);
}

.dark-theme .ot-dropdown-btn {
    background: transparent;
}

.dark-theme .ot-dropdown-btn:hover,
.dark-theme .ot-dropdown-btn:focus {
    color: var(--white);
}

.dark-theme .search_suggestion {
    background: var(---white);
    -webkit-box-shadow: var(--theme-shadow);
    box-shadow: var(--theme-shadow);
}

.dark-theme .search_suggestion .suggestion_link:hover {
    color: var(--white);
}

.dark-theme .modal-content {
    background-color: var(--white);
}

.dark-theme .modal-header-image {
    border-bottom: 1px solid var(--ot-primary-border);
    margin: 0;
}

.dark-theme .modal .btn-close {
    background: var(--input_bg);
    color: var(--ot-primary-title);
}

.dark-theme .cke_editable {
    color: var(--white);
}

.dark-theme .daterangepicker.show-ranges.ltr .drp-calendar.left,
.dark-theme .daterangepicker .drp-buttons {
    border-color: var(--ot-primary-border);
}

.dark-theme .daterangepicker .calendar-table {
    background: var(---white);
    background: var(--ot-primary-border);
    padding: 10px;
    border-radius: 8px;
}

.dark-theme .daterangepicker td.in-range {
    color: var(--white);
}

.dark-theme .cke_toolgroup a.cke_button:last-child:after,
.dark-theme .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after,
.dark-theme .cke_combo:after,
.dark-theme .cke_combo:after,
.dark-theme .cke_combo_arrow {
    border-color: var(--body_text);
}

.dark-theme .modal {
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.dark-theme input:-webkit-autofill {
    -webkit-text-fill-color: var(--ot-primary-title) !important;
}

.dark-theme .cke_chrome .cke_top {
    background: rgba(117, 123, 140, 0.1) !important;
}

.dark-theme .cke_combo:after {
    border-color: var(--body_text);
}

.dark-theme .cke_toolbar_separator {
    background-color: var(--body_text);
}

.dark-theme .swal2-popup {
    background: var(--body-bg) !important;
}

.dark-theme .client_box .client_title:hover {
    color: var(--ot-primary);
}

.dark-theme .header_square_box {
    border-color: var(--border_3) !important;
}

.dark-theme .header_square_box:hover,
.dark-theme .theme_dropdown .btn:hover {
    color: #fff;
}

.dark-theme .mce-panel {
    border: 0 solid var(--input_bg);
    border: 0 solid var(--input_bg);
    background-color: var(--input_bg);
}

.dark-theme .dropzone {
    border: 1px solid var(--ot-primary-paragraph);
    border-radius: 5px;
    background: var(--ot-primary-paragraph);
    color: var(--white);
}

.dark-theme .ot-input::-webkit-input-placeholder,
.dark-theme .ot-form-control::-webkit-input-placeholder,
.dark-theme .ot_fileUploader::-webkit-input-placeholder {
    color: rgba(172, 180, 203, 0.4) !important;
}

.dark-theme .ot-input::-moz-placeholder,
.dark-theme .ot-form-control::-moz-placeholder,
.dark-theme .ot_fileUploader::-moz-placeholder {
    color: rgba(172, 180, 203, 0.4) !important;
}

.dark-theme .ot-input:-ms-input-placeholder,
.dark-theme .ot-form-control:-ms-input-placeholder,
.dark-theme .ot_fileUploader:-ms-input-placeholder {
    color: rgba(172, 180, 203, 0.4) !important;
}

.dark-theme .ot-input::-ms-input-placeholder,
.dark-theme .ot-form-control::-ms-input-placeholder,
.dark-theme .ot_fileUploader::-ms-input-placeholder {
    color: rgba(172, 180, 203, 0.4) !important;
}

.dark-theme .ot-input::placeholder,
.dark-theme .ot-form-control::placeholder,
.dark-theme .ot_fileUploader::placeholder {
    color: rgba(172, 180, 203, 0.4) !important;
}

.dark-theme .table-span-text {
    color: var(--ot-primary-title) !important;
}

.dark-theme .bg-blue-gradient.wave-animated::before {
    background: rgba(87, 155, 228, 0.1490196078);
}

.dark-theme .bg-blue-gradient.wave-animated::after {
    background: rgba(87, 155, 228, 0.1215686275);
}

.dark-theme .bg-tea-gradient.wave-animated::after {
    background: rgba(124, 237, 173, 0.06);
}

.dark-theme .bg-tea-gradient.wave-animated::before {
    background: rgba(206, 255, 227, 0.18);
}

.dark-theme .wave-animated::before {
    background: rgba(252, 171, 94, 0.168627451);
}

.dark-theme .wave-animated::after {
    background: rgba(252, 171, 94, 0.0705882353);
}

.dark-theme .page-header {
    background-color: var(--white) !important;
}

.dark-theme .options__button {
    background-color: #2b2d35;
}

.dark-theme .nicescroll-cursors {
    background: #eeeeee !important;
}

.dark-theme .nicescroll-cursors {
    background: rgba(51, 52, 62, 0.5607843137) !important;
    border-color: rgba(51, 52, 62, 0.5607843137) !important;
}

.dark-theme .list-group-flush>.list-group-item {
    border-bottom-color: var(--ot-primary-border);
    background: transparent;
}

.dark-theme .badge-light-primary {
    background: var(--input_bg);
}

.dark-theme .badge-light-success {
    background: var(--input_bg);
}

.dark-theme .step-list-wrapper .single-step-list-step::before {
    background: var(--ot-primary-border);
}

.dark-theme * {
    scrollbar-color: rgba(51, 52, 62, 0.5607843137) rgba(51, 52, 62, 0.5607843137);
}

.dark-theme .srollbar {
    scrollbar-color: rgba(51, 52, 62, 0.5607843137) rgba(51, 52, 62, 0.5607843137);
}

.dark-theme .file_upload {
    border-color: var(--ot-primary-border) !important;
}

.dark-theme .ot-card,
.dark-theme .table-content.table-basic .card {
    background-color: var(--white) !important;
}

.dark-theme .wave-animated.cart-two {
    background: var(--body-bg) !important;
}

.dark-theme .text-title {
    color: var(--ot-primary-title) !important;
}

.dark-theme .arrow-toggle-btn {
    background: #2b2d35;
    border-color: var(--ot-primary-border) !important;
}

.dark-theme .ot-btn-primary span {
    color: #fff;
}

.dark-theme .ck.ck-button:not(.ck-disabled):hover,
.dark-theme a.ck.ck-button:not(.ck-disabled):hover {
    background: var(--body_bg);
}

.dark-theme .ot-input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-color: var(--ot-primary-border) !important;
    color: var(--ot-primary-title);
}

.dark-theme .ot-pagination .page-link:hover {
    background: var(--ot-primary);
    color: #ffffff !important;
}

.dark-theme .form-control {
    border: 1px solid var(--ot-primary-border);
}

.dark-theme .btn-export:hover {
    background: transparent;
    color: #fff;
    border-color: var(--border_3);
}

.dark-theme .btn-export:hover span {
    color: #fff;
}

.dark-theme .btn-export:hover i {
    color: #fff;
}

.dark-theme .sidebar {
    background: var(--white) !important;
}

.dark-theme .home-btn:hover {
    color: #fff;
}

.dark-theme .breadcrumb-item.active {
    color: var(--ot-primary-title);
}

.dark-theme .single-add-ons {
    border: 1px solid var(--ot-primary-border);
    background: none;
}

.dark-theme .in-active {
    border: 1px solid var(--ot-primary-border) !important;
}

.dark-theme .table-content .table-toolbar .dropdown-action .dropdown-menu::after {
    background: var(---white);
}

.dark-theme .table-content .table-toolbar .dropdown-action .dropdown-item:hover {
    background: transparent;
}

.dark-theme .chat-box-area .chat-list-wrapper .chat-list .single-chat::before {
    background-color: var(--ot-primary-border);
}

.dark-theme .chat-box-area .chat-list-wrapper .chat-list .single-chat .chat-timer .time {
    color: var(--ot-primary-title);
}

.dark-theme .header-control-item .single-select .select2-container .select2-selection--single {
    background-color: unset !important;
    border: 1px solid var(--border_3) !important;
}

.dark-theme .step-list-wrapper .single-step-list-step .single-multiStep-request-list-item-number {
    background: var(--body-bg);
    border: 1px solid var(--ot-primary-border);
}

.dark-theme .daterangepicker::after {
    border-bottom: 6px solid var(--ot-primary-border);
}

.dark-theme .daterangepicker .calendar-table .next span,
.dark-theme .daterangepicker .calendar-table .prev span {
    border-color: #fff;
}

.dark-theme .daterangepicker .ranges li.active {
    background-color: var(--ot-primary);
    color: #fff;
}

.dark-theme .daterangepicker td.available:hover,
.dark-theme .daterangepicker th.available:hover {
    background-color: var(--ot-primary);
}

.dark-theme .daterangepicker td.available:hover,
.dark-theme .daterangepicker th.available:hover {
    background-color: var(--ot-primary);
}

.dark-theme .daterangepicker .calendar-table {
    border: 1px solid var(--white);
    background-color: var(--white);
}

.dark-theme .btn-uplode {
    background: rgba(246, 246, 246, 0.06);
}

.dark-theme .btn-dropdown {
    background: rgba(246, 246, 246, 0.06);
}

.dark-theme .note-toolbar {
    background: var(--body-bg);
}

.dark-theme .note-btn {
    color: var(--ot-primary-paragraph);
    background-color: rgba(246, 246, 246, 0.06);
    border: 1px solid var(--ot-primary-border);
}

.dark-theme .note-editor .note-editing-area .note-editable {
    color: #b2bec3;
}

.dark-theme .note-modal-content {
    background: var(--white);
}

.dark-theme .note-input {
    border: 1px solid var(--ot-primary-border);
    background: none;
    color: var(--ot-primary-paragraph);
}

.dark-theme .close {
    color: white;
    opacity: 0.6;
}

.dark-theme .chat-box-area .chat-list-wrapper .chat-list .single-chat.active {
    background: rgba(246, 246, 246, 0.06);
}

.dark-theme .header-right .cart-list .pos-btn:hover {
    border: 1px solid var(--ot-primary-border);
}

/*Changes while RTL Start*/
body.rtl .header {
    right: 320px;
    left: 0;
    transition: -webkit- right 0.4s;
    -webkit-transition: right 0.4s;
    transition: right 0.4s;
    transition: right 0.4s, -webkit- right 0.4s;
}

@media (max-width: 768px) {
    body.rtl .header {
        padding: 10px;
        right: 0;
    }
}

body.rtl .header .header-search .search-icon {
    left: auto !important;
    right: 16px !important;
}

body.rtl .half-expand-toggle.sidebar-toggle img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

body.rtl .half-expand .header {
    z-index: 22;
    right: 100px;
    transition: -webkit- right 0.4s;
    -webkit-transition: right 0.4s;
    transition: right 0.4s;
    transition: right 0.4s, -webkit- right 0.4s;
}

body.rtl .half-expand .half-expand-toggle.sidebar-toggle img {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}

body.rtl .half-expand-toggle .sidebar-toggle img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

body.rtl .profile-expand-list {
    float: right;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    width: 100%;
}

body.rtl .profile-expand-list .profile-expand-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

body.rtl .item-content .notification,
body.rtl .item-content .message {
    text-align: right;
}

body.rtl .item-avater .item-badge {
    right: auto !important;
    left: 0 !important;
}

body.rtl .topbar-dropdown-menu h1 {
    float: right;
    padding-right: 20px;
    padding-left: 0;
}

body.rtl .language-list h5,
body.rtl .currency-list h5 {
    float: right;
}

/*Changes while RTL Start*/
body.rtl .sidebar {
    right: 0;
}

@media (max-width: 768px) {
    body.rtl .sidebar {
        right: -100%;
        -webkit-transition: right 0.3s;
        transition: right 0.3s;
    }
}

body.rtl .sidebar .sidebar-menu ol,
body.rtl .sidebar .sidebar-menu ul {
    padding-right: 0;
    margin-right: 0;
}

body.rtl .sidebar .sidebar-menu ol a,
body.rtl .sidebar .sidebar-menu ul a {
    text-decoration: none;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    margin-right: 17px;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>a {
    padding-right: 47px;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>ul>li>a {
    padding-right: 64px;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .mm-active>a {
    border-left: none;
    border-right: 2px solid var(--ot-primary);
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section ul>li>a {
    padding-right: 28px;
}

body.rtl .sidebar-expand .sidebar {
    right: 0;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
}

.rtl .half-expand .sidebar .sidebar-header .half-expand-toggle {
    position: absolute;
    right: 100%;
    margin-right: 10px;
}

.rtl .half-expand .sidebar .sidebar-header .half-expand-toggle img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rtl .half-expand .sidebar .sidebar-menu {
    overflow: visible;
}

.rtl .half-expand .sidebar .sidebar-menu .sidebar-menu-section-heading {
    margin-right: 0;
}

.rtl .half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item .parent-item-content span {
    display: none;
}

.rtl .half-expand .sidebar .sidebar-menu .parent-menu-list .sidebar-menu-item a {
    border: none;
}

.rtl .half-expand .sidebar .sidebar-menu-item>ul>li>a {
    padding-left: 10px !important;
}

.rtl .half-expand .sidebar .sidebar-menu-item>ul>li>ul>li>a {
    padding-left: 30px !important;
}

.rtl .half-expand .sidebar ul.parent-menu-list>li>ul {
    position: absolute;
    top: 0;
    width: 236px;
    left: 100px;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.rtl .half-expand .theme-switch {
    background: #edfaff;
    z-index: 3000000;
    position: absolute;
    bottom: 0;
}

.rtl .half-expand .parent-menu-list>li>ul {
    right: 380px !important;
}

.rtl .half-expand .sidebar-menu {
    position: absolute;
    left: 50%;
    top: 10%;
    z-index: 2000;
    overflow: hide;
    height: calc(100vh - 100px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.rtl .half-expand .main-content {
    margin-right: 100px;
    transition: -webkit-margin-right 0.3s;
    -webkit-transition: margin-right 0.3s;
    transition: margin-right 0.3s;
    transition: margin-right0 0.3s, -webkit-margin-right 0.3s;
}

body.rtl .main-content {
    margin-right: 320px;
    margin-left: 0;
    transition: -webkit-right 0.3s;
    -webkit-transition: margin-right 0.3s;
    transition: margin-right 0.3s;
    transition: margin-right 0.3s, -webkit-margin-right 0.3s;
}

@media (max-width: 768px) {
    body.rtl .main-content {
        width: 100%;
        margin-right: 0;
        transition: -webkit-left 0.3s;
        -webkit-transition: margin-right 0.3s;
        transition: margin-right 0.3s;
        transition: margin-right 0.3s, -webkit-margin-right 0.3s;
    }
}

.rtl .summery-card .card-heading .card-content {
    margin-left: 0;
    margin-right: 16px;
}

#rtl_change {
    position: fixed;
    top: 50%;
    right: 0px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rtl #rtl_change {
    left: 0;
    right: auto;
}

/* Notification Filter By */
.rtl .filter .input-check-radio {
    margin-right: unset !important;
    margin-left: 4px !important;
}

.rtl .filter .input-check-radio .form-check .form-check-input {
    margin-right: unset !important;
    margin-left: 4px !important;
}

.rtl .information-modal .icon {
    margin-left: 8px;
    margin-right: 0px !important;
}

.rtl .confirmation-modal .icon {
    margin-left: 8px;
    margin-right: 0px !important;
}

.rtl .profile-table-content .table-toolbar .dropdown-export .dropdown-item .icon {
    margin-left: 8px;
}

.rtl .profile-table-content .table-toolbar .dropdown-action .dropdown-item .icon {
    margin-left: 8px;
}

.rtl .profile-table-content .table .dropdown-action .dropdown-item .icon {
    margin-left: 8px;
}

.profile-table-content .table .dropdown-action .dropdown-item:hover {
    background-color: var(--ot-bg-secondary);
    color: var(--ot-primary-title);
}

.rtl .profile-content .profile-menu-head .body {
    margin-left: unset;
    margin-right: 12px;
}

.rtl .profile-table-content .table-toolbar .dropdown-export .dropdown-item {
    text-align: right;
}

.rtl .profile-table-content .table-toolbar .dropdown-action .dropdown-item {
    text-align: right;
}

.rtl .profile-table-content .table .dropdown-action .dropdown-item {
    text-align: right;
}

.rtl .timeline-basic .timeline-item {
    padding-right: 40px;
}

.rtl .timeline-basic .timeline-marker {
    left: unset;
    right: 0;
}

@media (min-width: 768px) {

    .rtl .timeline-split .timeline-content,
    .timeline-centered .timeline-content {
        padding-right: 30px;
    }
}

/* auth */
.rtl .auth-container .input-check-radio {
    margin-right: 0px !important;
}

.rtl .auth-container .input-check-radio .form-check .form-check-input {
    margin-right: 0px !important;
}

/* radio icon rtl  */
.rtl .input-check-radio {
    margin-right: -1.5em !important;
    margin-left: 4px !important;
}

.rtl .input-check-radio .form-check .form-check-input {
    margin-right: -1.5em !important;
    margin-left: 4px !important;
}

.rtl .direction-button .input-check-radio {
    padding-right: 25px !important;
    padding-left: auto !important;
}

.rtl .direction-button div:nth-child(2) {
    padding-left: 10px !important;
}

/* RTL style  */
body.rtl .sidebar .sidebar-menu .sidebar-menu-section .mm-active>a {
    border-left: none;
    border-right: 0;
}

*[dir="rtl"] .sidebar .sidebar-menu .sidebar-menu-section.sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>a {
    padding: 7px 0 7px 47px;
}

.sidebar-menu-item a.has-arrow::after {
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
}

*[dir="rtl"] .sidebar .sidebar-menu .sidebar-menu-section .mm-active>a.has-arrow::after {
    -webkit-transform: rotate(-135deg) translate(0, -50%);
    transform: rotate(-135deg) translate(0, -50%);
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    margin-right: 30px;
}

body.rtl .half-expand .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    margin-right: 0;
}

*[dir="rtl"] .ot-pagination .pagination .page-item .page-link i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

*[dir="rtl"] .sidebar {
    border-right: 0;
}

*[dir="rtl"] .user-avatar+.user-info,
[class^="user-avatar"]:not([class*="-group"])+.user-info {
    margin-left: 0;
    margin-right: 1rem;
}

*[dir="rtl"] .ml-10 {
    margin-left: 0px !important;
    margin-right: 10px !important;
}

*[dir="rtl"] .basic-table tbody td,
*[dir="rtl"] .ot-table-bg tbody td,
*[dir="rtl"] .table-color-col tbody td {
    padding-left: 0px;
    padding-right: 20px;
}

*[dir="rtl"] .datepicker--nav-action svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

*[dir="rtl"] .table-content.table-basic .table .thead tr th {
    padding: 16px 16px 16px 32px;
}

*[dir="rtl"] .profile-content .profile-menu {
    border-right: 0;
    border-left: 1px solid var(--ot-primary-border);
}

*[dir="rtl"] .profile-content .profile-menu-body .nav-link::before {
    right: auto;
    left: -2px;
}

*[dir="rtl"] .bookmark ul {
    padding: 0;
}

*[dir="rtl"] .simple-pricing-container .pricing-table-body .top-box .product-details {
    border-left: 1px solid #eaeaea;
    border-right: 0;
}

*[dir="rtl"] .chat-container .chat-app .chat .chat-header .chat-about {
    float: left;
    padding-left: 0;
    padding-right: 10px;
}

*[dir="rtl"] .table-content.table-basic .table .sorting_asc::before,
*[dir="rtl"] .table-content.table-basic .table .sorting_desc::before,
*[dir="rtl"] .table-content.table-basic .table .sorting_asc::after,
*[dir="rtl"] .table-content.table-basic .table .sorting_desc::after {
    right: auto;
    left: 16px;
}

*[dir="rtl"] .ml-20 {
    margin-left: 0px !important;
    margin-right: 20px !important;
}

*[dir="rtl"] .notification-container .notification-col .card .notification-list .notification-details .answer .user-answer img {
    margin-right: 0;
    margin-left: 16px;
}

*[dir="rtl"] .notification-container .notification-col .card .notification-list .notification-details .answer .btn-answer {
    margin-left: 0;
    margin-right: 66px;
}

*[dir="rtl"] .clearfix.replyMessage {
    text-align: left;
}

*[dir="rtl"] .clearfix.message {
    text-align: right;
}

*[dir="rtl"] .chat-container .chat-app .people-list img {
    float: right;
}

*[dir="rtl"] .chat-container .chat-app .people-list .about {
    float: right;
    padding-left: 0;
    padding-right: 8px;
}

*[dir="rtl"] .timeline-centered .period .timeline-title {
    margin-left: 0;
    margin-right: 96px;
}

*[dir="rtl"] .cart-two .icon2 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

*[dir="rtl"] .profile-content .profile-menu-body .nav-link {
    padding: 0px 60px 0px 0px;
}

*[dir="rtl"] .profile-content .profile-body {
    padding: 80px 80px 80px 250px;
}

@media (min-width: 768px) {

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info {
        padding-right: 0;
        margin-left: 30px;
    }

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info {
        padding-right: 0;
        margin-left: 20px;
        display: inline-block;
    }
}

@media (min-width: 768px) and (max-width: 1600.98px) {
    *[dir="rtl"] .profile-content .profile-body {
        padding: 30px;
    }
}

@media (min-width: 320px) and (max-width: 767.98px) {
    *[dir="rtl"] .profile-content .profile-body {
        padding: 30px;
    }
}

.rtl .options__button {
    margin-right: 0.5rem;
}

.rtl .header .header-search {
    right: 10px;
}

html body.rtl .mCustomScrollBox .mCSB_container {
    direction: rtl !important;
}

/* RTL_STYLE  */
.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-left: 0;
}

/*Changes while RTL Start*/
body.rtl .half-expand .sidebar .sidebar-menu {
    height: calc(100vh - 350px);
}

.multi-select-wrap .select2-container .select2-selection--single {
    background: none;
}

.multi-select-wrap .select2-container .select2-selection--single {
    background-color: unset !important;
}

body.rtl .sidebar .sidebar-menu ol a,
body.rtl .sidebar .sidebar-menu ul a {
    text-decoration: none;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-section-heading {
    margin-right: 17px;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section ul>li>a {
    padding-right: 28px;
}

body.rtl .sidebar-expand .sidebar {
    right: 0;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a.has-arrow::after {
    right: auto;
    left: 20px;
    right: auto;
}

body.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a.active::before {
    left: auto;
    right: 0;
}

body.rtl .half-expand .sidebar .sidebar-menu {
    left: auto;
    right: -50px;
}

body.rtl .half-expand .sidebar ul.parent-menu-list>li>ul {
    left: auto;
    right: 94px !important;
    z-index: 1212;
}

body.rtl .half-expand .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item ul li a.has-arrow::after {
    -webkit-transform: rotate(-45deg) translate(0, -50%) !important;
    transform: rotate(-45deg) translate(0, -50%) !important;
    left: 20px;
    right: auto;
}

body.rtl .half-expand .sidebar-dropdown-menu>li ul {
    left: auto;
    right: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body.rtl .half-expand .header {
    padding-left: 20px;
    padding-right: 40px;
}

body.rtl .sidebar {
    right: 0;
}

body[dir="rtl"] .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 20px;
    text-align: right;
    padding-left: 17px;
}

body[dir="rtl"] .header .header-search .search-field {
    padding-left: 1rem !important;
    padding-right: 3.25rem !important;
}

body[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: auto;
    left: 25px;
}

body[dir="rtl"] .profile-border {
    width: 100%;
}

body[dir="rtl"] .header .header-search .search-icon {
    left: auto;
    right: 30px;
}

body[dir="rtl"] .select2-container .select2-dropdown .select2-results__option {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

body[dir="rtl"] .select2-container .select2-dropdown .select2-search .select2-search__field {
    text-align: right;
}

body[dir="rtl"] .half-expand .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item>ul>li>a {
    padding-left: 0;
    padding-right: 28px;
}

body[dir="rtl"] .card_scroll_active .mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-left: 4px;
}

body[dir="rtl"] .card_scroll_active .mCustomScrollBox {
    padding-right: 0;
    padding-left: 25px;
}

body[dir="rtl"] .card_scroll_active {
    padding-left: 0;
    padding-right: 28px !important;
}

@media (max-width: 768px) {
    body.rtl .sidebar {
        right: -100%;
        -webkit-transition: right 0.3s;
        transition: right 0.3s;
    }
}

@media (max-width: 991.98px) {
    body.rtl .sidebar {
        right: -100%;
        -webkit-transition: right 0.3s;
        transition: right 0.3s;
    }

    body.rtl .main-content {
        margin-right: 0;
    }
}

.ck.ck-editor__main li {
    list-style: unset;
}

.form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
}

.rtl .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 14px;
}

.rtl .step-list-wrapper .single-step-list-step::before {
    right: 100%;
    left: auto;
}

@media (max-width: 991.98px) {
    body.rtl .header {
        right: 0;
    }
}

.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item.mm-active .parent-item-content::before {
    right: auto;
    left: 0;
}

.rtl .header_control_left .half-expand-toggle i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -1px;
}

.rtl .auth-container .form-wrapper .auth-form .remember-me label {
    margin-left: 0;
    margin-right: 8px;
}

.rtl #revenueChart .apexcharts-legend-text {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .nice-select .list li {
    text-align: right;
}

.rtl .basic-table thead th,
.ot-table-bg thead th,
.table-color-col thead th {
    padding-right: 13px;
}

.rtl .multiStep-wrapper-contents .input-check-radio {
    margin-right: 0 !important;
}

.rtl .nice-select {
    text-align: right !important;
}

.rtl .nice-select:after {
    right: auto;
    left: 15px;
}

.rtl .select2-container--open .select2-dropdown {
    min-width: 142px;
}

.rtl span.icon.mr-12 {
    margin-right: 0;
    margin-left: 12px;
}

.rtl .tagify__tag__removeBtn {
    margin-left: 0;
    margin-right: 6px;
}

.rtl .offcanvas.offcanvas-start {
    right: 0;
}

.rtl input[type="date"] {
    text-align: right;
}

.rtl .arrow-toggle-btn i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Prole Admin user Profile  */
.rtl .profile-content .offcanvas.show:not(.hiding),
.offcanvas.showing {
    -webkit-transform: none;
    transform: none;
}

.rtl .offcanvas {
    visibility: visible;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item:not(.child-menu-list) a.active::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    top: 0;
    border-radius: 30px 0 0 30px;
}

.rtl .off-sidebar .main-content {
    margin-right: 0px;
}

.rtl .off-sidebar .header {
    left: 0;
    right: 0;
}

.rtl .fileter-selct .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 4px !important;
}

.rtl .date-pic-icon i {
    left: 0;
    right: auto;
}

.rtl .add-btn {
    right: auto;
    left: 0;
}

.rtl .search-style .search-icon {
    right: auto;
    left: 16px;
}

.rtl .sidebar .sidebar-header {
    border-left: 1px solid var(--ot-primary-border);
}

.rtl .login-bg::before {
    right: auto;
    left: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rtl .toggle-password {
    right: auto;
    left: 16px;
}

.rtl .page-number i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: block;
}

.rtl .live-support {
    margin-left: 0;
    margin-right: auto;
}

.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item.mm-active>a.has-arrow::after {
    -webkit-transform: rotate(-135deg) translate(0, -50%) !important;
    transform: rotate(-135deg) translate(0, -50%) !important;
}

.rtl .sidebar .sidebar-menu .sidebar-menu-section .sidebar-menu-item a.has-arrow::after {
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
}

.rtl .sidebar-header>.close-toggle.sidebar-toggle {
    right: auto;
    left: 19px;
}

.rtl .chat-box-area .chat-search-wrapper .searchBox .icon {
    right: auto;
    left: 11px;
}

.rtl .chat-box-area .chatBox-message .chatShow .single-chat.message .chatText .chatCaption {
    text-align: right !important;
    margin-left: auto !important;
    margin-right: 0;
}

.rtl .chat-box-area .chatBox-message .chatShow .single-chat.replyMessage .chatText .chatCaption {
    text-align: left;
    margin-left: 0;
}

.rtl .right-show {
    right: auto !important;
    left: 100%;
}

.rtl .header-right .cart-list.langualge-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -7px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: auto;
    right: -100%;
}

@media (min-width: 992px) {
    .rtl-offset-lg-1 {
        margin-right: 8.33333333%;
    }
}


/* Approve company Loader */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
}

#loading {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

#loader {
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#loader .d-flex {
    justify-content: center;
    align-items: center;
    height: 100%;
}

/*  */
.text-bg-success {
    background-color: #0caf60 !important;
}

.btn-primary-fill.btn-height2.close {
    opacity: 1;
    background: var(--ot-primary);
    border: 0;

}

.btn-primary-fill.btn-height2.close:hover {
    color: #fff;
}

.btn-primary-outline.btn-height2.close {
    opacity: 1;
    border: 0;
}

.ot-search {
    background: var(--body-bg);
}

.search-btns {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 6px !important;
    line-height: 16px;
    background: rgba(var(--ot-primary-rgb), 0.16) !important;
    color: var(--ot-primary) !important;
    font-size: 15px !important;
    width: 33px;
    height: 29px;
    border-radius: 4px;
}


.btn-soft {
    background: rgba(var(--ot-primary-rgb), 0.16);
    color: var(--ot-primary);
    border-radius: 5px;
    border: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    padding: 7px 14px;
    height: 40px !important;
}

.btn-soft:hover {
    border: 1px solid var(--ot-secondary-btn);
    color: #fff;
    background: var(--ot-primary);
}

.btn-height2.close.cancel {
    color: #ff3030;
}

.h-40 {
    height: 40px;
}

.nav.nav-tabs.project-tabs.nav-tabs-horizontal li {
    background: none;
    border-radius: 4px;
    color: var(--ot-primary-title);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(217, 219, 228, 0.6);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    padding: 9px 16px;
    display: inline-block;
}

.nav.nav-tabs.project-tabs.nav-tabs-horizontal li.active {
    border: 1px solid var(--ot-primary);
    background: var(--ot-primary);
}

.nav.nav-tabs.project-tabs.nav-tabs-horizontal li.active a {
    color: #fff !important;
}